2

ダブルタップズーム中に ListView と重なる osmdroid MapView に問題があります (また、組み込みのズームコントロールでプラス記号をタップしたときも)。

ここで何が起こるかを見ることができます:

MapView の問題

私は LinearLayout MapView と ListView に and を追加しましandroid:layout_weight="1"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>

私の問題を解決するにはどうすればよいですか?

4

0 に答える 0