如何让ProgressDialog在加载照片列表时不停地加载循环?
我正在从网上下载一系列照片,并显示带有加载圆圈的 ProgressDialog。但是,当该过程未完成时,加载循环将会滞后/挂起。如何让加载顺利进行?
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示不确定的 ProgressDialog 对象。然后启动一个线程并使用该线程下载图像。下载完成后关闭 ProgressDialog。这个方法对我有用。
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.