我在使用约束布局传播 2 组元素时遇到问题。我了解这种新布局的目标是使用平面层次结构,因此我想避免将我的元素放在子布局中。
我查看了一些很棒的资源,例如 constraintlayout.com,但无法弄清楚如何使其适用于我的特定案例——我认为这很常见..
这是我想要实现的图像。在红色中,空间 1、2 和 3 需要具有相同的高度(就像展开链一样)。
感谢您的关注 :)
我在使用约束布局传播 2 组元素时遇到问题。我了解这种新布局的目标是使用平面层次结构,因此我想避免将我的元素放在子布局中。
我查看了一些很棒的资源,例如 constraintlayout.com,但无法弄清楚如何使其适用于我的特定案例——我认为这很常见..
这是我想要实现的图像。在红色中,空间 1、2 和 3 需要具有相同的高度(就像展开链一样)。
感谢您的关注 :)
您可以使用以下方法实现此目的:
<?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"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/button2"
app:layout_constraintVertical_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2"
app:layout_constraintTop_toBottomOf="@+id/button"
app:layout_constraintBottom_toTopOf="@+id/button3"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button3"
app:layout_constraintTop_toBottomOf="@+id/button2"
app:layout_constraintBottom_toTopOf="@+id/view"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<View
android:id="@+id/view"
android:layout_width="0dp"
android:layout_height="1dp"
app:layout_constraintBottom_toTopOf="@+id/button4"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button4"
app:layout_constraintTop_toBottomOf="@+id/button3"
app:layout_constraintBottom_toTopOf="@+id/button5"
app:layout_constraintVertical_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button5"
app:layout_constraintTop_toBottomOf="@+id/button4"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>