Android ConstraintLayout 中的 RecyclerView 不滚动

Android RecyclerView in ConstraintLayout doesn't scroll

我在约束布局中有一个 recyclerView,我无法让它滚动,列表只是在屏幕下方继续,没有滚动的可能性。如果我将布局转换为相对布局,则滚动效果很好。

如何让它滚动?

下面的 XML 显示了我的布局,回收站视图在底部。布局在屏幕顶部有一个图像和描述。此屏幕设置占屏幕的 30%。接着是一个分隔符和回收器视图,它应该占据屏幕的其余部分并且不能滚动

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:background="@color/gradient_top">

   <android.support.v7.widget.AppCompatImageView
        android:id="@+id/imageViewLock"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="16dp"
        app:layout_constraintBottom_toTopOf="@+id/textViewPermissionsTitle"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:srcCompat="@drawable/ic_phone_lock"/>

    <TextView
        android:id="@+id/textViewPermissionsTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        android:gravity="center"
        android:paddingLeft="24dp"
        android:paddingRight="24dp"
        android:text="@string/allow_permissions"
        android:textColor="@color/white"
        android:textSize="@dimen/description_text_size"
        app:layout_constraintBottom_toTopOf="@+id/guideline1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>

    <android.support.constraint.Guideline
        android:id="@+id/guideline1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.3"/>


    <View
        android:id="@+id/viewSeparator"
        android:layout_width="match_parent"
        android:layout_height="0.7dp"
        android:layout_marginTop="10dp"
        android:background="@color/bright_blue"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline1"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerViewPermissions"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbarSize="1dp"
        android:scrollbarThumbVertical="@color/white"
        android:scrollbars="vertical"
        app:layout_constraintTop_toBottomOf="@+id/viewSeparator" />


</android.support.constraint.ConstraintLayout>

要使 RecyclerView 滚动,必须满足以下两个条件之一:

  • RecyclerView 的高度小于其所有项目
  • RecyclerView 在滚动父对象中

ConstraintLayout 不是滚动父级,所以我们必须确保 RecyclerView 是 "too small",这将导致它让用户滚动它的子级。

最简单的方法是给 RecyclerView 一个定义的高度,像这样:

android:layout_height="200dp"

当然,这只有在您提前确切知道您希望 RecyclerView 有多大时才有效,而通常情况并非如此。

更好的解决方案是使用约束来定义 RecyclerView 的高度。第一步是给它一个0dp的高度,可以认为是"match constraints"。换句话说,您是在告诉系统使 RecyclerView 尽可能高以满足其顶部和底部约束。

接下来,您必须定义顶部和底部约束。最简单的方法是将 RecyclerView 的顶部限制在父级的顶部,将其底部限制在父级的底部。这可能看起来像这样:

android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"

或者,您可以相对于其他一些视图定位 RecyclerView。这可能看起来像这样:

android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@+id/viewAboveMe"
app:layout_constraintBottom_toTopOf="@+id/viewBelowMe"

只要您将 0dp 的高度与顶部和底部约束相结合(并且只要您的 RecyclerView 实际上小于其内容),这将允许您的 RecyclerView 根据需要滚动。

原创

您的 RecyclerView 使用 wrap_content 作为高度。如果你想让它滚动,你必须提供一个固定的高度,或者,在 ConstraintLayout 中,使用 0dp 作为它的高度并给它一个 app:layout_constraintBottom_xxx 属性。

这对我有用:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/constraintLayout2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        ..... other controls ....

    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginStart="1dp"
        android:layout_marginEnd="1dp"
        android:layout_marginBottom="1dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/constraintLayout2" />
</androidx.constraintlayout.widget.ConstraintLayout>

有时会发生这种情况,因为没有限制回收站视图的底部。这导致回收器视图的高度超出可见屏幕。

我通过以下 XML 结构模式解决了同样的问题 -

                 <androidx.constraintlayout.widget.ConstraintLayout
                        android:layout_width="match_parent"
                       /*be carefull about the height.It need to be match parent.*/
                        android:layout_height="match_parent">
        
                      Others views are here .....
        
                        <androidx.recyclerview.widget.RecyclerView
                            android:layout_width="match_parent"
                            android:layout_height="0dp" /*Must be 0dp in height*/
                            app:layout_constraintBottom_toBottomOf="parent" 
                            /*Must have a layout_constraintBottom_toBottomOf */
                            *emphasized text*/>
        
                    </androidx.constraintlayout.widget.ConstraintLayout>

在 RecyclerView 中,以下更改对我有效。

<androidx.recyclerview.widget.RecyclerView.   
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@id/idBelowView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHeight_default="wrap"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/idAboveView" />