scrollView中的RecyclerView

时间:2015-09-01 02:37:25

标签: android android-scrollview android-recyclerview

当向上滚动到RecyclerView中的第一个位置项时,ScrollView可以继续向上滚动吗?这是代码:

<android.support.design.widget.CoordinatorLayout 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.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:dividerHeight="@dimen/margin_10dp_in_w1024dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        />

1 个答案:

答案 0 :(得分:0)

有两个滚动视图无法在同一方向滚动,请尝试重新考虑您的用户界面。

你可以:

  • 使用recyclerview处理不同类型的视图,以便您不再需要其他滚动视图。

  • 在coordinatorLayout中使用视差视图,以便在每次到达第一个位置时显示信息。