Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想禁用活动中的用户交互,以便用户无法触摸活动内容视图内的视图/子视图。有什么办法可以做到这一点?
您可以在活动顶部添加一个空白对话框,如下所示:
overlayDialog = new Dialog(context, android.R.style.Theme_Panel); overlayDialog.show();
当您不再需要它时,请致电
overlayDialog.dismiss();