gpt4 book ai didi

android - 约束布局 SPREAD 和 PACKED 组合

转载 作者:行者123 更新时间:2023-12-03 14:54:24 28 4
gpt4 key购买 nike

我想创建以下 ConstraintLayout :

enter image description here

换句话说,我想要一个链,其中所有元素都是传播 只有第二个和第三个是包装 .我可以通过从链中删除第三个元素并将以下代码应用于它来做到这一点:
app:layout_constraintTop_toBottomOf="@+id/second_element"
它按预期工作。

但是

在小型设备的情况下,这条链被推到一起,第三个元素将在第四个元素之上。像这样:

enter image description here

在这种情况下,我需要将其均匀定位:

enter image description here

谢谢你的每一个帮助。

最佳答案

尝试这个,

<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonOne"
android:layout_width="wrap_content"
app:layout_constraintVertical_chainStyle="packed"
android:layout_height="wrap_content"
app:layout_constraintVertical_bias="0"
app:layout_constraintBottom_toTopOf="@+id/buttonTwo"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/buttonThree"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonOne" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/buttonFour"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonTwo" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonFour"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/buttonFive"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonThree" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonFive"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/buttonFour" />

</androidx.constraintlayout.widget.ConstraintLayout>

关于android - 约束布局 SPREAD 和 PACKED 组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60189134/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com