Android contentView 禁用用户交互?

发布于 2024-11-03 11:40:22 字数 57 浏览 6 评论 0原文

我想禁用活动中的用户交互,以便用户无法触摸活动内容视图内的视图/子视图。有什么办法可以实现这一点吗?

I want to disable the user interaction in an activity so that the user cannot touch the view/ subviews inside the content view of the activity. Is there any way to achieve this?

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

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

发布评论

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

评论(1

世界和平 2024-11-10 11:40:22

您可以在 Activity 顶部添加一个空白对话框,如下所示:

overlayDialog = new Dialog(context, android.R.style.Theme_Panel);
overlayDialog.show();

当您不再需要它时,请调用

 overlayDialog.dismiss();

You can add a blank dialog on top of your activity like this:

overlayDialog = new Dialog(context, android.R.style.Theme_Panel);
overlayDialog.show();

and when you don't need it any more, call

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