0

I was wondering if anybody knew how to update progress Bar in the application while attempting to download file using download manager for android?

Please share your ideas.

Thank you in advance.

vinay kumar
  • 1,451
  • 13
  • 33

1 Answers1

0

You must have a look at AsyncTask http://developer.android.com/reference/android/os/AsyncTask.html http://www.vogella.com/articles/AndroidPerformance/article.html

and you can show the ProgressBar in onPreExecute() do the task in doInBackground() and hide the ProgressBar in onPostExecute()

Ajmal Salim
  • 4,142
  • 2
  • 33
  • 41