在 WindowManager 上显示警报对话框

发布于 2024-12-23 09:59:43 字数 315 浏览 5 评论 0原文

我在 WindowManager 上添加了一个自定义视图

WindowManager mWm = (WindowManager)activity.getApplicationContext().getSystemService(Context.WINDOW_SERVICE);
mWm.addView(customView, mWl);

单击自定义视图时,我将显示一个警报对话框。 但是,alertDialog 显示在 customView 后面。

有什么方法可以在 WindowManager 上或在所有内容之前添加警报对话框吗?

I have a customView added on the WindowManager

WindowManager mWm = (WindowManager)activity.getApplicationContext().getSystemService(Context.WINDOW_SERVICE);
mWm.addView(customView, mWl);

When customView is clicked, i will show a alert dialog.
However, the alertDialog is shown behind the customView.

Any way to add the alert dialog on WindowManager or just in front of everything?

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

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

发布评论

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

评论(1

软的没边 2024-12-30 09:59:43

听起来您想要的是一个透明的活动视图,前面有一个警报对话框。

在 AndroidManifest.xml 中:

<activity
    android:name=".ClassName"
    android:theme="@android:style/Theme.Translucent" >
</activity>

然后使用 Activity 的 showDialog 方法来创建对话框

it sounds like what you want is an activity view that's transparent with an alert dialog in front of that.

in AndroidManifest.xml:

<activity
    android:name=".ClassName"
    android:theme="@android:style/Theme.Translucent" >
</activity>

and then user the activity's showDialog method to create the dialog

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