I am downloading some files sequentially in Android 2.2, So I want to show the currently downloading list along with progressbar, for that I have another activity to show the currently downloading list.It's not a problem to me to show the list but my problem is I need to show the progress of current downloading file and after completion of that file it should be deleted from list and show the next song download and progress.How can I get the each item progressbar to update the progress? anybody help me.
|
One basic solution could be: On every download start an asyncTask with unique downloadId, maintain the ID in some static HashMap with custom object like DownloadableItem which will have progress, progessText etc. Now every asyncTask will use its own onProgressUpdate to update its own DownloadableItem object on download progress. In OnPostExecute method delete the entry from HashMap using the downloadId. Now create a DownloadListActivity which has all current downloads going on. Pass the list of custom objects to ArrayAdapter and in getView method start a thread which will read the custom objects repeatedly and will update the progressin the activity. On progress >= 100 stop the thread, reload the adapter. The solution may not the best, but can give you a start. |
|||||||
|