当应用程序进入前台时,使对话框持久显示在屏幕上的最佳方法是什么?

发布于 2024-10-20 13:50:26 字数 252 浏览 1 评论 0原文

我想知道处理用户应用程序进入前台时出现的对话框的最佳方法。

我的情况就像在进度对话框或正常警报对话框中显示一些消息,然后按主页按钮将应用程序带到后台。当我返回屏幕时,进度对话框或警报对话框应该持续显示在屏幕上。

我尝试将此块放入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-10-27 13:50:26
if(alertdialog == null){
  // create your dialog here and then show it
} else if (!alertdialog.isShowing()) {
  alertdialog.show();
}
if(alertdialog == null){
  // create your dialog here and then show it
} else if (!alertdialog.isShowing()) {
  alertdialog.show();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文