当应用程序进入前台时,使对话框持久显示在屏幕上的最佳方法是什么?
我想知道处理用户应用程序进入前台时出现的对话框的最佳方法。
我的情况就像在进度对话框或正常警报对话框中显示一些消息,然后按主页按钮将应用程序带到后台。当我返回屏幕时,进度对话框或警报对话框应该持续显示在屏幕上。
我尝试将此块放入 onStart() 中,但它显示了 NULL 指针异常。
onStart(){
if alertdialog.isShowing() alertdialog.show();
}
I want to know the best approach to handle the dialog boxes to be appeared when the user application comes to foreground.
My scenario would be like if am displaying some message in the progress dialog or normal alert dialog and i press the home button to take the application to background. And when i come back to the screen the progress dialog or alert dialog should be persisitent on the screen.
I tried putting this block in onStart() but it shows me NULL pointer exception.
onStart(){
if alertdialog.isShowing() alertdialog.show();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)