我对 osmdroid MapView 有问题,它在双击缩放期间与 ListView 重叠(以及当我点击内置缩放控件的加号时)。
在这里你可以看到发生了什么:
android:layout_weight="1"
我用and添加到 LinearLayout MapView 和 ListView 中android:layout_height="fill_parent"
:
<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>
如何解决我的问题?