可能重复:
Download a file with Android, and showing the progress in a ProgressDialog
Android Activity Indicator?
我真的是android的新手 我正在做一个与webservice(xml)连接的应用程序,它运行良好,但我的应用程序加载屏幕,视图不完整,然后显示数据。 我想在服务器上下载并显示所有数据后,实现一个“gettin ready”对话框。
感谢您的帮助
答案 0 :(得分:5)
来自http://developer.android.com/guide/topics/ui/dialogs.html#ProgressDialog
ProgressDialog progressDialog= ProgressDialog.show(MyActivity.this, "",
"Loading. Please wait...", true);
progressDialog.dismiss(); // for close the dialog bar.