在我的应用程序中,我有一个片段,当用户点击搜索按钮时,recyclerview在地图视图顶部打开(覆盖整个地图视图)。我想知道为什么如果我沿着空的recyclerview运行手指,地图在recyclerview中还没有数据时会滚动吗?回收站视图顶部打开时,有没有办法防止回收站视图中尚未加载行的情况下后面的地图视图滚动?这是相关的xml:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar_shadow"
android:layout_alignParentBottom="true"
android:id="@+id/mapContainer">
<com.google.android.gms.maps.MapView
android:id="@+id/map_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.google.android.gms.maps.MapView>
</RelativeLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/searchStopsRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/toolbar_shadow"
android:layout_alignParentBottom="true"
android:background="#fff"
android:visibility="gone">
</android.support.v7.widget.RecyclerView>