为什么回收者视图的最大高度不起作用?我也尝试了回收者视图添加内部约束布局,但它不起作用

时间:2019-03-08 06:38:28

标签: android android-layout android-recyclerview recyclerview-layout

我想最大高度以进入回收站视图,但对我不起作用。我找到了一些答案,但它们对我没有用。
我尝试了多种方法来解决此问题。但我找不到答案。这是XML代码。任何人都可以帮助我解决该问题

<androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recyclerViewItems"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:maxHeight="100dp"
                app:layout_constrainedHeight="true"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHeight_default="wrap"
                app:layout_constraintHeight_max="100dp"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

        </androidx.constraintlayout.widget.ConstraintLayout>

2 个答案:

答案 0 :(得分:0)

将此代码粘贴到您的xml活动文件中。希望这会工作。

<RowDefinition Height="Auto" />

答案 1 :(得分:0)

您的问题对我来说不是很清楚,但是如果您希望recyclerView占用所有屏幕空间,则应使用以下方法:

 <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/recyclerViewItems"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:maxHeight="100dp"
                app:layout_constrainedHeight="true"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHeight_default="wrap"
                app:layout_constraintHeight_max="100dp"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />

如果您想限制自己的recyclerview高度,我不建议在dp中使用固定尺寸-使用准则/屏障使recyclerView仅占据屏幕的某些百分比,例如,如果您希望视图仅占据屏幕的30%屏幕使用指南相差30%,并以此限制您的视图:

  <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerViewItems"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>