Android - 如果在弹出窗口之外单击,则阻止弹出窗口关闭
我有一个主要工作的弹出窗口。如果我单击其中的某个项目,它会执行其应该执行的操作等。 我遇到的唯一问题是,如果我在其外部单击,弹出窗口会自动关闭,这不是我想要的。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以只使用对话框来代替。检查压力机是一项旧的实验性功能,已不再使用。
You could just use a Dialog instead. The check press is an old experimental feature that is no longer used.