从Scrollview交互Android阻止Mapview



我有一个ScrollView,里面有很多视图(TextView、Buttons…(,最后有一个osmdroid mapview,它只是一个地图。当我触摸地图视图时,android不会移动地图(缩放或更改地图的位置(,而是移动滚动视图。例如,我向上移动手指,这意味着地图应该向南移动。但滚动视图却向下移动。我的问题是:用户有可能更改地图视图而不是滚动视图吗?我可以以某种方式阻止地图视图进行滚动交互吗?但是地图视图仍然必须是滚动视图的一部分。


<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<org.osmdroid.views.MapView
android:id="@+id/mapBbox"
android:layout_width="373dp"
android:layout_height="349dp"
android:layout_marginTop="40dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.448"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/radioGroup" />
...

</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>


mapBbox.setNestedScrollingEnabled(false)查看您是否可以在onCreate中使用它。它的作用是禁用滚动视图的滚动行为

Ps:

android:layout_width="373dp" << change to match parent 
android:layout_height="349dp" << change to wrap content or a seperate value

相关内容

  • 没有找到相关文章

最新更新