我在 RecyclerView 中有一个 ViewHolder 的 XML 布局。
此布局的根是一个 ConstraintLayout,其高度设置为wrap_content
。
在这个扁平的层次结构中,有 3 个文本视图和一个固定高度的图像视图;考虑到:
<ConstraintLayout>
<TextView height=wrap>
<TextView height=wrap>
<TextView height=wrap>
<ImageView height=150dp>
</ConstraintLayout>
这是一个相对简单的布局。beta4
这是它在设计器中的外观(最终在运行时,每个 recyclerView 单元格):
为“繁文缛节”道歉,但这是 NDA 等等。
话虽如此,要素是:
3 个文本视图(带有漂亮紫色背景的红色胶带) 高度为 150dp 的 ImageView 是灰色的。
紫色背景应用于根 ConstraintLayout。都不错。
现在这就是它的外观,无需对 Beta 5 进行任何修改:
如您所见,紫色(根)约束布局现在“混乱”,不再像以前那样包装内容。
我尝试过的事情:
添加
app:layout_constraintHeight_default="wrap"
到 ConstraintLayout (并且也传播)。没有什么不同。ImageView 有一个
app:layout_constraintBottom_toBottomOf="parent"
我尝试删除的约束,也没有任何区别。恢复到 beta4 :)
作为记录,这是完整的布局(由于繁文缛节的原因,id 已被重命名,并且由于相同的原因,没有 tools:text 或类似内容)。其他方面的布局完全相同。
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorAccent">
<TextView
android:id="@+id/toplabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text=""
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="@+id/top_bottom_label"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/top_right_label"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/top_right_label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginTop="8dp"
android:ellipsize="end"
android:gravity="end"
android:maxLines="1"
android:text=""
app:layout_constraintBottom_toTopOf="@+id/top_bottom_label"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintLeft_toRightOf="@+id/toplabel"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed" />
<TextView
android:id="@+id/top_bottom_label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginTop="8dp"
android:ellipsize="end"
android:gravity="end"
android:maxLines="1"
android:text=""
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintLeft_toRightOf="@+id/toplabel"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/top_right_label" />
<ImageView
android:id="@+id/imageview"
android:layout_width="0dp"
android:layout_height="150dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/top_bottom_label"
app:srcCompat="@android:color/darker_gray" />
</android.support.constraint.ConstraintLayout>
我应该做一些不同的事情吗?(我知道我可以用 RelativeLayout 替换它,并且可能会这样做,但无论如何……我相信ConstraintLayout!):)