user446965
user446965

Reputation: 31

How to make ProgressDialog non-stop loading circle when I am loading a list of photos?

I am downloading an array of photos from the net and showing a ProgressDialog with a loading circle. But the loading circle will be lag / hang while the process is not finish. How to make the loading running smoothly?

Thanks.

Upvotes: 0

Views: 956

Answers (1)

Josnidhin
Josnidhin

Reputation: 12504

Show a indeterminate ProgressDialog object. Then start a thread and download the images using the thread. Dismiss the ProgressDialog after the download is complete. This method works for me.

Upvotes: 1

Related Questions