在双击缩放期间,MapView重叠ListView

时间:2013-03-22 09:10:53

标签: android osmdroid

我遇到了osmdroid MapView的问题,它在双击缩放期间重叠了ListView(当我在内置缩放控件上点击加号时)。

在这里你可以看到会发生什么:

MapView problem

我使用android:layout_weight="1"android:layout_height="fill_parent"添加到LinearLayout MapView和ListView中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <org.osmdroid.views.MapView
            android:id="@+id/map_view"
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1" />

    <ListView
            android:layout_width="match_parent"
            android:layout_height="fill_parent"
            android:id="@+id/list_view"
            android:layout_weight="1" />

</LinearLayout>

如何解决我的问题?

0 个答案:

没有答案