I want to show a progress bar showing percentage completed while my app is downloading some big files over the internet. something like this :
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..