How to add ProgressDialog

前端 未结 4 1650
后悔当初
后悔当初 2020-12-12 04:20

I am downloading a file from dropbox which is taking a few seconds. I want to add a ProgressDialog for the download but I don\'t know how to do that.

         


        
4条回答
  •  被撕碎了的回忆
    2020-12-12 04:58

    See there are actually 4 methods of AsyncTask:

    1. onPreExecute() - you can do some pre execution task here.
    2. doInBackground() - you can perform some background work here.
    3. onPostExecute() - you can perform post execution task here. Means like displaying data in ListView, update TextView, etc.
    4. onProgressUpdate() - To update UI while background operation is going on.

    So in your case, you can show progress dialog or progress bar inside onPreExecute() method of AsyncTask and dismiss(() the same inside onPostExecute().

提交回复
热议问题