Android 中的空白屏幕加载程序
我在两项活动之间的进度条上遇到问题。当应用程序从一个活动加载到另一个活动时,由于第二个活动中的延迟加载图像,我的应用程序中出现几秒钟的空白屏幕。我想在那个空白屏幕中显示进度条。我该怎么做呢?
谢谢和问候,
巴尔加夫
I have problem with progress bar between two activities. When app loading form one activity to another activity I am getting blank screen for few seconds in my app due to the lazy loading images in the second activity. I want to display the progressbar in that blank screen. How can I do it?
Thanks and Regards,
Bhargav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开始第二个 Activity 并启动
AsyncTask
用于延迟加载ProgressDialog
它。请参阅此处或此处,然后检查此 问题。
Start your second activity and launch
AsyncTask
for lazy loading withProgressDialog
bounded in it.See the example here or here, and check this question.