我有两个回收者视图:
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:overScrollMode="never"
android:scrollbars="vertical"
/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:overScrollMode="never"
android:scrollbars="vertical"
/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
第一个是水平的,第二个是垂直的。 当我现在尝试向下滑动时,滚动只停在我的位置,我的手指从屏幕上移开。 这两个recyclerviews必须一起滚动。第一个不应该停留在顶部。 所以滚动不是投掷,它不能继续顺利滚动。 我怎样才能解决这个问题? 已经尝试过NestedScrollView和普通的ScrollView