I have a detailActivity that user can download a file in that activity. I have implemented the download task using AsynchTask, it downloads files without any problem and updates the progressBar correctly.
But when user closes the activity and returning back to that activity, the progressBar is not showing the download progress. How can I make my progressBar still updated after returning back to the activity?
(I just want to notice that I have a listView before my dtailActivity which means user can open the detailActivity with another content by choosing another item of listView. I want to show the download progress just for the exact item not for other items of listView)