我有一个BottomSheetDialogFragment,其中包含一个带有Google MapView的布局,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
app:layout_heightPercent="40%"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
app:layout_heightPercent="60%"
android:layout_below="@+id/mapView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"/>
</android.support.percent.PercentRelativeLayout>
然而,当试图在地图上拖动时,它只会拖动一小部分,然后才会失去触摸。你可以反复移动很小的数量。似乎BottomSheet可能正在拦截TouchEvent。在这种特殊情况下,BottomSheet无法被解雇,所以我根本不需要触摸这些触摸。有什么想法可以提供平滑的拖动和缩放以进行缩放吗?