使用 onCreateDialog 创建时 DialogFragment 不可见
(使用兼容性库)
我已经实现了一个带有扩展DialogFragment的对话框。 我在 onCreateDialog 中使用 AlertDialog.Builder 创建对话框(未使用 onCreateView)。
在我的片段中,我使用以下方法调用对话框:
dlg.show(getFragmentManager(), tag);
但是,当我检查可见性时,一旦对话框清晰可见,使用
dlg.isVisible();
This 返回 false。
现在以下是来自兼容性源的 Fragment::isVisible 代码。
final public boolean isVisible() {
return isAdded() && !isHidden() && mView != null
&& mView.getWindowToken() != null && mView.getVisibility() == View.VISIBLE;
}
调用返回 false,因为 mView 为 null,因为视图未附加到窗口。
关于我应该如何调用对话框或创建它以便将其附加到片段的根视图的任何想法?或者我还应该如何检查可见性?
预先感谢,彼得。
(Using the compatibility library)
I have implemented a dialog with extends DialogFragment.
I create the dialog using AlertDialog.Builder in onCreateDialog (onCreateView is not used).
In my fragment I invoke the dialog with:
dlg.show(getFragmentManager(), tag);
However, when I come to check visiblity, once the dialog is clearly visible, using
dlg.isVisible();
This returns false.
Now the following is the Fragment::isVisible code from the compatibility sources.
final public boolean isVisible() {
return isAdded() && !isHidden() && mView != null
&& mView.getWindowToken() != null && mView.getVisibility() == View.VISIBLE;
}
The calls returns false because mView is null because the view isn't attached to a window.
Any ideas as to how I should be invoking the dialog, or creating it for that matter, so that it is attached to the fragment's root view? Or how else I should be checking for visibility?
Thanks in advance, Peter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过以下函数确定是否显示对话框片段:
You can determine if a dialog fragment is showing by a function like: