如何在 Android 中启动活动之前显示进度对话框?
在 Android 中,如何在启动 Activity 之前(即 Activity 正在加载一些数据时)显示进度对话框?
How do you display a progress dialog before starting an activity (i.e., while the activity is loading some data) in Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该在 AsyncTask 中加载数据,并在数据加载完成时更新您的界面。
您甚至可以在 AsyncTask 的
onPostExecute()
方法中启动一个新活动。更具体地说,您将需要一个扩展 AsyncTask 的新类:
然后在您的活动中您将执行以下操作:
You should load data in an AsyncTask and update your interface when the data finishes loading.
You could even start a new activity in your AsyncTask's
onPostExecute()
method.More specifically, you will need a new class that extends AsyncTask:
Then in your activity you would do:
当您在 Android 上启动一个长时间运行的进程时,始终建议在另一个线程上执行它。然后,您可以使用 UI 线程显示进度对话框。您无法在进程运行的同一 (UI) 线程中显示进度对话框。
执行以下操作来启动您的流程
为此,您的活动应该实现 Runnable
,如下所示 最后是执行长时间运行的流程的方法
When you start a long-running process on Android, its always advisable to do it on another thread. You can then use the UI thread to display a progress dialog. You cannot display a progress dialog in the same (UI) thread in which the process is running.
Do the following to start your process
For this your activity should implement Runnable as follows
And finally a method to perform the long-running process