Android - 创建进度对话框
我是安卓开发新手。我想在我的应用程序中开发一个带有进度条
的对话框
。当我单击搜索按钮时,对话框
应该出现并带有进度条
,显示在切换到另一个活动
之前进度正在进行。请用示例代码建议我。
I am new to android development. I want to develop a dialog
with a progressbar
in my application. When i click the search button the dialog
should appear with the progressbar
, showing that the progress is going on before switching to another activity
. Please suggest me with sample code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ProgressDialog
。不过,您应该在新的线程
上完成工作,并在完成时使用处理程序
回调活动
。我是这样做的:Use a
ProgressDialog
. You should do the work on a newthread
, though, and use ahandler
to call back to theactivity
when finished. Here's how I do it: