如何将RecyclerView的长度设置为不超过屏幕长度

时间:2018-12-16 18:08:27

标签: android android-studio

我在NestedScrollView中有RecyclerView,文本,按钮等。

当recyclerview菜单中有很多项目变为高空(match_parent)时,按钮和文本之类的所有元素都将通过滚动条显示以显示元素,我希望高度是自动的,而其他元素不会消失。 / p>

我该怎么做?我要添加什么?

1 个答案:

答案 0 :(得分:0)

使您的布局看起来像这样:

<android.support.constraint.ConstraintLayout
    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">

    <LinearLayout
        android:width="match_parent"
        android:height="wrap_content"
        android:id="@+id/top_elements_holder"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@id/recyclerview">

        <!-- Anything above the RecyclerView goes here -->

    </LinearLayout>

    <RecyclerView
        android:width="match_parent"
        android:height="0dp"
        android:id="@+id/recyclerview"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/top_elements_holder"
        app:layout_constraintBottom_toTopOf="@id/bottom_elements_holder"
    />

    <LinearLayout
        android:width="match_parent"
        android:height="wrap_content"
        android:id="@+id/bottom_elements_holder"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/recyclerview"
        app:layout_constraintBottom_toBottomOf="parent">

            <!-- Anything below the RecyclerView goes here -->

        </LinearLayout>

</android.support.constraint.ConstraintLayout>

您显然需要对其进行修改以适合您的需求。

使用ConstraintLayout,可以将RecyclerView的高度设置为match_constraint0dp),并设置其顶部和底部约束。如果您在RecyclerView上方有元素,则将它们放在顶部的LinearLayout中,并将其放在底部。

有关ConstraintLayout的工作原理的更多信息,请阅读the documentation