我有这样的布局。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
....>
<LinearLayout
android:id="@+id/box1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
...............
..............
</LinearLayout>
<LinearLayout
android:id="@+id/box2"
android:background="#c0000000"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
.............
.............
</LinearLayout>
</RelativeLayout>
Box2 显示在 Box1 上方,由于 Box2 的半透明颜色,Box1 部分可见。现在我想让box2消耗掉所有的触摸事件,这样box2中的Button
s和EditText
s就不起作用了。java代码是如何实现的?