如何在android中加载进度对话框?
我开发了一个android应用程序。在该应用程序中从网络获取信息并显示在屏幕上。在获取信息时,我想在获取信息后将进度对话框加载到屏幕上,我想关闭该对话框
请任何人帮助我如何使用一些示例代码来做到这一点
提前致谢
I have developed an android application .In that application getting information from web and displayed in the screen.At the time of getting information i want to load a progress dialog to the screen after getting the information i want dismiss the dialog
Please any one help me how to do this with some sample code
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要实现一个
AsyncTask
。示例:
然后您只需调用
您可以在此处阅读有关
AsyncTask
的更多信息:http://developer.android.com/reference/android/os/AsyncTask.htmlYou need to implement an
AsyncTask
.Example:
Then you just have to call
You can read more about
AsyncTask
here: http://developer.android.com/reference/android/os/AsyncTask.html重点是,你应该使用两个不同的线程,第一个是 UI 线程,第二个是“加载数据线程”
从第二个线程,您要将进程状态发布到第一个线程,例如:仍在工作或 50% 已完成
用它来发布数据
The point is, you should use two different thread 1st is UI thread, 2nd is "loading data thread"
from the 2nd thread you are to post the process state to the 1st thread, for example: still working or 50% is done
use this to post data