Show Progress bar while downloading

前端 未结 4 1844
太阳男子
太阳男子 2021-01-31 12:42

I want to show a progress bar showing percentage completed while my app is downloading some big files over the internet. something like this :

4条回答
  •  耶瑟儿~
    2021-01-31 13:37

    You should be using Progress bar. I assume for downloading file you are using Asynctask, if you are not then i recommend you to do that. Async task has has two more cool methods apart from the

    doInBackground()

    They are

    preExecute and postExecute

    You can override these method, now create a simple progress bar and start it in preExecute and end it in postExecute method. Here is the working LINK

提交回复
热议问题