我有一个谷歌地图和一个相对布局内的线性布局。在与地图进行某些交互后,线性布局变得可见,然后与地图重叠。
重叠的线性布局包含一些控件,但点击或触摸线性布局中的控件会影响地图,地图位于 UI 中的线性布局下方。
如何让我的线性布局响应触摸事件(而不是地图)?
这是我的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
>
<include
android:id="@+id/include"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/general_map_fragment" />
<LinearLayout
android:id="@+id/drawer"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="#ffffff"
android:padding="15dp"
android:visibility="invisible">
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="200dp" >
...
</TableLayout>
</LinearLayout>