我的要求是─ 我在一个具有UI的片段中创建了一个布局。我必须通过半透明的图像或布局或其他东西隐藏该UI,以便实际的UI变得不可点击。用户界面应该仍然可见,只是不可点击。 我怎样才能做到这一点?
答案 0 :(得分:1)
这可以通过RelativeLayout
完成。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
// Your fragment Content goes hre
</LinearLayout>
<RelativeLayout
android:id="@+id/rel_Translucent"
android:layout_width="match_parent"
android:background="#33000000"
android:clickable="true"
android:visibility="gone"
android:layout_height="match_parent">
</RelativeLayout>
</RelativeLayout>
只要您想要半透明覆盖,只需将rel_Translucent
设置为VISIBLE
即可。
答案 1 :(得分:0)
您可以在不添加额外视图的情况下实现您想要的效果。您可以通过将enabled设置为false来禁用单击事件。
你可以在下面的答案中使用Parag Chauhan提到的功能:
How to disable all click events of a layout?
希望这会有所帮助。