Reputation: 11944
I want to upload files from phone to server for that I am using an AsyncTask. In case of large files if they are still uploding and the user closes the application will the upload stop i.e AsyncTask will end or continue till its complete?
Upvotes: 2
Views: 1398
Reputation: 13960
The activity will continue to run even if the user switches to another application, unless you explicitly call finish()
or the system kills your activity, in case of low resources.
Upvotes: 1