Show Progress bar while downloading

前端 未结 4 1803
太阳男子
太阳男子 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条回答
  •  梦毁少年i
    2021-01-31 13:34

    You can acheive this by using a progress bar in two ways.

    1.Add a progress bar(the circle one) to act as a loading indicator.

    To do this simple show a progress bar on start of the image download thread progressbar.show(); After the download is finished dismiss the progressbar progressbar.dismiss();

    You can use AsyncTask for this

    Refer this link

    2.Add a progress bar(the rectangular bar type) to show the progress of the download or what ever it may be.

    I would recomend you to go through this link..

提交回复
热议问题