Reputation: 2360
I have an activity which downloads images in background in a listView using AsyncTask, when i press an item in that list i go to another activity. Even when i have moved to second activity the asynctask keeps on downloading the images. How to i pause it.
Also can you please tell me how to pause this downloading process.
Upvotes: 1
Views: 1517
Reputation: 4960
You can't really pause an AsyncTask. You can, however, complete the AsyncTask and then store the progress, once you are back to the original Activity, you can resume the loading of Images (based on the stored progress)
Upvotes: 3