Android Recycler View未显示完整高度

时间:2016-06-27 14:04:33

标签: android android-layout android-recyclerview scrollview

我现有的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollmain">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingTop="24dp">

            <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:fillViewport="true"
                android:paddingBottom="4dp"
                android:layout_below="@+id/HAT0"
                android:id="@+id/HAT1"
                android:paddingTop="4dp">

                -----Text View ------

            </android.support.v4.widget.NestedScrollView>

            <android.support.v4.widget.NestedScrollView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:clipToPadding="false"
                android:fillViewport="true"
                android:overScrollMode="never"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                android:paddingBottom="4dp"
                android:paddingTop="4dp"
                android:id="@+id/HAT2"
                android:layout_below="@+id/HAT1"
                android:scrollbars="horizontal">

                ----- Text View ---------

            </android.support.v4.widget.NestedScrollView>

            <android.support.v7.widget.RecyclerView
                android:id="@+id/list"
                android:layout_below="@+id/HAT2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="200dp"
                app:layout_behavior="@string/appbar_scrolling_view_behavior" />

        </RelativeLayout>

    </ScrollView>

</RelativeLayout>

使用此代码RecyclerView并未覆盖整个底部布局。如果我没有提及任何最小高度,那么我无法看到RecyclerView。所以我需要指定RecyclerView的高度。那么我应该怎么做才能解决这个问题。

2 个答案:

答案 0 :(得分:1)

如果您为android:fillViewport="true"添加ScrollView属性并为android:layout_height="match_parent"设置RecyclerView,则可以解决问题。

就像那样:

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:id="@+id/scrollmain">

<android.support.v7.widget.RecyclerView
        android:id="@+id/list"
        android:layout_below="@+id/HAT2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:minHeight="200dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

答案 1 :(得分:0)

NestedScrollView是2020年的答案。如果您将RecyclerView放入其中,请使用它而不是ScrollView