在 Layout 中使用多个 RecyclerView 滚动

Scolling with multiple RecyclerViews in Layout

我创建了一个包含两个 RecyclerView 的布局。一个水平滚动,而另一个垂直滚动。我可以在每个 RecyclerView 内正确滚动,但整个页面不会滚动,即顶部 RecyclerView 始终位于顶部,底部 RecyclerView 位于底部,就像两者都固定在适当位置一样。

以下是我的 xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

        <EditText
            android:id="@+id/search"
            android:layout_width="fill_parent"
            android:layout_height="50dp"
            android:hint="Search Dramas"
            android:textSize="16sp"
            android:paddingLeft="10dp"
            android:gravity="center"
            android:textColor="@color/dark_grey"
            android:textColorHint="@color/dark_grey"
            android:background="@drawable/border_bottom"/>


        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/border_bottom_background_black"
            android:textColor="@color/white"
            android:padding="10dp"
            android:text="Most Watched"/>

        <!-- A RecyclerView to display horizontal list -->
        <android.support.v7.widget.RecyclerView
            android:id="@+id/featured"
            android:scrollbars="none"
            android:layout_width="fill_parent"
            android:layout_height="240dp"
            android:paddingLeft="0dp"
            android:paddingRight="15dp"
            android:paddingTop="15dp"
            android:paddingBottom="25dp"
            android:background="@color/black"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/border_bottom_backgroundless"
            android:textColor="@color/dark_grey"
            android:padding="10dp"
            android:text="All Dramas"/>

        <!-- A RecyclerView to display vertical list -->
        <android.support.v7.widget.RecyclerView
            android:id="@+id/pick_item"
            android:scrollbars="vertical"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"/>


</LinearLayout>

RecyclerView 仅在版本 22.2.0 中获得(仍然有限)对嵌套滚动的支持 - 我的第一个建议是尝试一下。

唯一完全支持嵌套滚动的视图是NestedScrollView (you can see this by noting that it implements both NestedScrollingChild and NestedScrollingParent)并且是在Support v4 version 22.1.0中添加的(在22.2.0中略有改进)。如果您只有一个水平 RecyclerView 作为垂直 RecyclerView 中最顶层的项目,您可以将其替换为包含水平 LinearLayoutNestedScrollView 10=] 然后是你的垂直 RecyclerView.

我能够通过将所有内容放入 ScrollView 然后设置垂直 RecyclerView manually/programmatically 的高度来解决问题。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/scrollView">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

            <EditText
                android:id="@+id/search"
                android:layout_width="fill_parent"
                android:layout_height="50dp"
                android:hint="Search Dramas"
                android:textSize="16sp"
                android:paddingLeft="10dp"
                android:gravity="center"
                android:textColor="@color/dark_grey"
                android:textColorHint="@color/dark_grey"
                android:background="@drawable/border_bottom"/>


            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/border_bottom_background_black"
                android:textColor="@color/white"
                android:padding="10dp"
                android:text="Most Watched"/>

            <!-- A RecyclerView to display horizontal list -->
            <android.support.v7.widget.RecyclerView
                android:id="@+id/featured"
                android:scrollbars="none"
                android:layout_width="fill_parent"
                android:layout_height="240dp"
                android:paddingLeft="0dp"
                android:paddingRight="15dp"
                android:paddingTop="15dp"
                android:paddingBottom="25dp"
                android:background="@color/black"/>

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/border_bottom_backgroundless"
                android:textColor="@color/dark_grey"
                android:padding="10dp"
                android:text="All Dramas"/>

            <!-- A RecyclerView to display list -->
            <android.support.v7.widget.RecyclerView
                android:id="@+id/pick_item"
                android:paddingBottom="20dp"
                android:scrollbars="vertical"
                android:layout_width="fill_parent"
                android:layout_height="match_parent"
                android:minHeight="840dp"/>


    </LinearLayout>
</ScrollView>

以编程方式设置 RecyclerView 的高度:

LinearLayout.LayoutParams params = new     
     LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, 
     ViewGroup.LayoutParams.WRAP_CONTENT);
// calculate height of RecyclerView based on child count
params.height=1150;
// set height of RecyclerView
recyclerView.setLayoutParams(params);