Android 无模式弹出窗口

发布于 2024-10-13 15:15:37 字数 235 浏览 3 评论 0原文

我似乎无法在 Android 中创建无模式弹出窗口。我可以很好地创建一个弹出窗口,它会接收事件。但是,我需要的是它接收事件,并且如果用户在弹出窗口之外单击,则活动将按正常方式接收事件。

我真的不想使用对话框,我正在寻找弹出控件的外观,用户可以选择单击该控件或选择单击活动中的其他内容。

我一直在阅读有关 FLAG_NOT_TOUCH_MODAL 的内容,但我似乎无法使用弹出窗口来实现此功能。

有什么想法吗?

I can't seem to create a modeless popupwindow in Android. I can create a popupwindow just fine, and it will receive events. However, what I need is for it to receive its events, and if the user clicks outside the popup window, the activity receives events as per normal.

I don't really want to use a dialog, and I'm looking for a look where a control pops up, and the user can choose to click on that or choose to click on something else in the activity.

I've been reading about FLAG_NOT_TOUCH_MODAL, but I can't seem to get this wot work with a popupwindow.

Any ideas?

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

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

发布评论

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

评论(1

心如荒岛 2024-10-20 15:15:37

看一下这个示例/库

https://github.com/lupidan/PopoverView

另一个选项我在我的项目中使用的是:

<activity android:name="com.your.Activity" android:theme="@android:style/Theme.Dialog"></activity>

并使用 onActivityResult(...) 捕获用户选择

Take a look at this example/library

https://github.com/lupidan/PopoverView

An other option that i use in my projects is:

<activity android:name="com.your.Activity" android:theme="@android:style/Theme.Dialog"></activity>

and catch the user selections with onActivityResult(...)

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