正式文件
MapView
here
明确地说
注意:建议不要将子级添加到此视图中。
地图视图
有了它复杂的触摸监听器和广泛的内部用户界面-你可以很容易地打破一些东西(例如变焦或相机刷卡与您的手机)
ScrollView
坦率地说,我不知道你为什么要这样做-你可以很容易地把所有的意见,你需要在普通的地方
FrameLayout
一切都会好的(除了
卷轴视图
刷卡手势处理器可能会中断
(手势)
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.company.com.library.mapbox.MyMapView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/mapView"/>
<FrameLayout
android:id="@+id/wrapper_layout"
android:layout_width="50dp"
android:layout_height="250dp"
android:layout_gravity="right"
android:layout_marginTop="100dp">
<ScrollView
android:id="@+id/level_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/level_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>
</ScrollView>
</FrameLayout>
</FrameLayout>
这样你就可以充分利用
地图视图
和
在这里
你可能也注意到我
具有
框架布局
并给出了包装纸的高度和重量
卷轴视图
match_parent
. 我这么做是因为
卷轴视图
虽然这不是你问题的确切解决办法,但我希望这个答案能对你有所帮助。