在 WindowManager 上显示警报对话框
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您想要的是一个透明的活动视图,前面有一个警报对话框。
在 AndroidManifest.xml 中:
然后使用 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:
and then user the activity's
showDialog
method to create the dialog