如何阻止 JDialog 隐藏

发布于 2024-12-09 11:32:06 字数 176 浏览 0 评论 0原文

我有以下类:

 public class MyAlertDialogFragment extends DialogFragment
 {
   ..
 }

其中包含带有一按钮组件的 JDialog。该对话框可以工作,但当我按下按钮时会隐藏。 有谁知道如何阻止对话框隐藏?

I have the below class:

 public class MyAlertDialogFragment extends DialogFragment
 {
   ..
 }

Which holds JDialog with one button component. The Dialog works, but hides when I press the button.
Do anyone knows how to stop the dialog from hiding?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

汐鸠 2024-12-16 11:32:07

按钮执行的例程必须触发对话框 dispose 调用。
看看是否可以找到 dispose(); 并将其注释掉。

The routine the button executes must be firing the dialog dispose call.
See if you can find dispose(); and comment it out.

南七夏 2024-12-16 11:32:07

您是否尝试过在 objetc 上调用 setCancelable(false) ?

如果能贴出更多代码就更好了

Have you tried to call setCancelable(false) on your objetc?

Would be better if you post more code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文