BottomSheetDialogFragment中的Mapview拖得非常滞后

时间:2016-07-28 17:05:46

标签: android android-layout android-fragments android-mapview

我有一个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无法被解雇,所以我根本不需要触摸这些触摸。有什么想法可以提供平滑的拖动和缩放以进行缩放吗?

0 个答案:

没有答案