RecyclerView 项目 ConstraintLayout 在使用 GridLayoutManager 时搞砸了

RecyclerView item ConstraintLayout messing up while using GridLayoutManager

我在 RecyclerView 中使用 GridLayoutManagerspanCount 为 2。 以下是 RecyclerView 项的布局。它是一个 ConstraintLayout 包裹在 CardView:

<android.support.v7.widget.CardView
    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="wrap_content"
    android:layout_margin="@dimen/cardview_margin"
    android:foreground="?android:attr/selectableItemBackground"
    app:cardBackgroundColor="@android:color/white"
    app:cardCornerRadius="4dp">

    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/tv_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginTop="8dp"
            android:layout_marginEnd="8dp"
            android:text="Title"
            android:textAllCaps="true"
            android:textColor="@color/colorPrimary"
            android:textSize="16sp"
            android:textStyle="bold"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/tv_sub_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Subtitle"
            android:textAllCaps="false"
            android:textSize="14sp"
            app:layout_constraintEnd_toEndOf="@+id/tv_title"
            app:layout_constraintStart_toStartOf="@+id/tv_title"
            app:layout_constraintTop_toBottomOf="@+id/tv_title" />

        <ImageView
            android:id="@+id/iv_favorite"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:scaleX="1.07"
            android:scaleY="1.07"
            android:src="@drawable/ic_star_blank_grey"
            app:layout_constraintBottom_toBottomOf="@+id/iv_locked"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="@+id/iv_locked"/>

        <ImageView
            android:id="@+id/iv_locked"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="24dp"
            android:layout_marginEnd="8dp"
            android:layout_marginBottom="8dp"
            android:scaleX="1.0"
            android:scaleY="1.0"
            android:src="@drawable/ic_lock_open_grey"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/iv_favorite"
            app:layout_constraintTop_toBottomOf="@+id/tv_sub_title" />
    </android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>

GridLayoutManager 倾向于根据第二列中项目的高度增加 RecyclerView 项目的高度时,就会出现问题。 ImageView 图标都离开父级底部并倾向于粘在 TextView tv_sub_title 上,如下面的屏幕截图所示:

请告诉我如何解决此问题,以便当项目布局的高度增加 GridLayoutManager 时,两个图标都位于底部。

谢谢

要使 iv_locked 与垂直约束之间的底部对齐,您需要通过添加 app:layout_constraintVertical_bias="1" 属性来设置最大垂直偏差 给它。由于 iv_favorite 在垂直方向上受限于 iv_locked,它会自动位于适当的位置。

好的,经过一些成功和尝试,并让@Pawel Laskowski 的回答更进一步,这就是解决问题的方法:

  1. app:layout_constraintVertical_bias="1" 属性添加到 iv_locked
  2. ConstraintLayoutandroid:layout_heightwrap_content 更改为 match_parent

ConstraintLayout 很容易上手,但很难掌握。感谢@Pawel Laskowski 的帮助。