如何将布局与mapview重叠

时间:2015-02-12 08:14:21

标签: android android-mapview overlap android-framelayout

大家好我正在开发一款应用。我想重叠布局与地图,如图像显示。我添加了framelayout但是当我在framelayout上玩手时,它会影响我的地图。我该如何解决这个问题?

提前致谢。

PS:无论背景如何。我的xml是这样的。但我对framelayout的触摸也会影响地图。

My 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>

enter image description here

1 个答案:

答案 0 :(得分:0)

在Frame布局中设置此属性并告诉我

<FrameLayout
       android:layout_width="240dp"
       android:layout_height="400dp"
       android:background="#fcccff"
android:setClickable="true"
       >
   </FrameLayout>