如何阻止 JDialog 隐藏
我有以下类:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
按钮执行的例程必须触发对话框 dispose 调用。
看看是否可以找到
dispose();
并将其注释掉。The routine the button executes must be firing the dialog dispose call.
See if you can find
dispose();
and comment it out.您是否尝试过在 objetc 上调用 setCancelable(false) ?
如果能贴出更多代码就更好了
Have you tried to call setCancelable(false) on your objetc?
Would be better if you post more code.