ConstraintLayout中的android RecylerView不会滚动

时间:2017-07-30 06:54:17

标签: android android-recyclerview android-scrollview android-constraintlayout

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

如何让它滚动?

以下XML显示我的布局,Recycler视图位于底部。布局在屏幕顶部有一个图像和描述。此屏幕设置占用屏幕的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>

5 个答案:

答案 0 :(得分:33)

要滚动RecyclerView,必须确定以下两项内容之一:

  • RecyclerView的高度低于其所有项目
  • RecyclerView位于滚动父级

ConstraintLayout不是滚动的父级,因此我们必须确保RecyclerView是&#34;太小&#34;,这将导致用户滚动其子级。

最简单的方法是给RecyclerView定义一个高度,如下所示:

android:layout_height="200dp"

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

更好的解决方案是使用约束来定义RecyclerView的高度。第一步是给它一个0dp的高度,这可以被认为是&#34;匹配约束&#34;。换句话说,您告诉系统要使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属性。

答案 1 :(得分:1)

这对我有用:

<?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>

答案 2 :(得分:0)

有时发生这种情况是因为没有限制回收者视图的底部。这导致回收者视图的高度超出了可见屏幕的范围。

答案 3 :(得分:0)

我通过以下XML结构pattarn解决了相同的问题-

                 <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>

答案 4 :(得分:0)

在 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" />