Android - 如果在弹出窗口之外单击,则阻止弹出窗口关闭

发布于 2024-10-21 08:13:14 字数 455 浏览 2 评论 0原文

我有一个主要工作的弹出窗口。如果我单击其中的某个项目,它会执行其应该执行的操作等。 我遇到的唯一问题是,如果我在其外部单击,弹出窗口会自动关闭,这不是我想要的。

populateListAdapter();
popuplistview.setAdapter(mAdapter2);
pw.setIgnoreCheekPress();
pw.setOutsideTouchable(false);
pw.setTouchable(true); 
pw.showAtLocation(this.findViewById(R.id.explosionlayout), Gravity.RIGHT, 0, 0); // Popup the popup!! (Show it NOW).

将 setOutsideTouchable 设置为 false 似乎没有什么区别。

还有,有人知道“CheekPress”的用途吗?

I've got a Popup which mostly works. If I click an item within it, it does what it should etc.
The only problem I have is if I click outside of it, the Popup automatically closes, which isn't what I want.

populateListAdapter();
popuplistview.setAdapter(mAdapter2);
pw.setIgnoreCheekPress();
pw.setOutsideTouchable(false);
pw.setTouchable(true); 
pw.showAtLocation(this.findViewById(R.id.explosionlayout), Gravity.RIGHT, 0, 0); // Popup the popup!! (Show it NOW).

Setting setOutsideTouchable to false, seems to make no difference.

And, does anyone know what 'CheekPress' is for ?

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

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

发布评论

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

评论(1

追风人 2024-10-28 08:13:14

您可以只使用对话框来代替。检查压力机是一项旧的实验性功能,已不再使用。

You could just use a Dialog instead. The check press is an old experimental feature that is no longer used.

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