如何将布局与地图视图重叠
How to overlap a layout with mapview
大家好,我正在开发一个应用程序。我想将布局与地图重叠,如图像显示。我添加了 framelayout 但是当我在 framelayout 上玩我的手时它会影响我的地图。我该如何解决这个问题?
提前致谢。
PS:无论上下文如何。我的 xml 就是这样。但是我对框架布局的处理也会影响地图。
我的 Main.XML ;
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity$PlaceholderFragment">
<com.esri.android.map.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.esri.android.map.MapView>
<FrameLayout
android:layout_width="240dp"
android:layout_height="400dp"
android:background="#fcccff"
>
</FrameLayout>
</RelativeLayout>
在您的框架布局中设置此属性并告诉我
<FrameLayout
android:layout_width="240dp"
android:layout_height="400dp"
android:background="#fcccff"
android:setClickable="true"
>
</FrameLayout>
大家好,我正在开发一个应用程序。我想将布局与地图重叠,如图像显示。我添加了 framelayout 但是当我在 framelayout 上玩我的手时它会影响我的地图。我该如何解决这个问题?
提前致谢。
PS:无论上下文如何。我的 xml 就是这样。但是我对框架布局的处理也会影响地图。
我的 Main.XML ;
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity$PlaceholderFragment">
<com.esri.android.map.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.esri.android.map.MapView>
<FrameLayout
android:layout_width="240dp"
android:layout_height="400dp"
android:background="#fcccff"
>
</FrameLayout>
</RelativeLayout>
在您的框架布局中设置此属性并告诉我
<FrameLayout
android:layout_width="240dp"
android:layout_height="400dp"
android:background="#fcccff"
android:setClickable="true"
>
</FrameLayout>