我遇到了osmdroid MapView的问题,它在双击缩放期间重叠了ListView(当我在内置缩放控件上点击加号时)。
在这里你可以看到会发生什么:
我使用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>
如何解决我的问题?