使用约束布局链的按钮不均匀地占据父宽度
Posted
技术标签:
【中文标题】使用约束布局链的按钮不均匀地占据父宽度【英文标题】:Buttons do not evenly occupy parent width using constraint layout chains 【发布时间】:2022-01-09 00:52:54 【问题描述】:我正在尝试使用链在ConstraintLayout
的底部创建一个带有 2 个按钮的链,但它不起作用。为了清楚起见,我删除了按钮上方的几个视图
<?xml version="1.0" encoding="utf-8"?>
<ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_
>
<Button
android:id="@+id/button1"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:layout_marginEnd="10dp"
android:text="Button 1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/button2"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintHorizontal_chainStyle="spread"
app:layout_constraintTop_toBottomOf="@id/guideline" />
<Button
android:id="@+id/button2"
android:layout_
android:layout_
android:layout_alignParentBottom="true"
android:layout_marginStart="4dp"
android:layout_marginEnd="10dp"
android:text="Button 2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintStart_toEndOf="@id/button1"
app:layout_constraintTop_toBottomOf="@id/guideline" />
</ConstraintLayout>
这些按钮确实显示在屏幕底部,一个挨着一个,但不占用父级宽度,即每个按钮都占屏幕的 50%。它们环绕屏幕一侧的文本。
我做错了什么?
更新:
我看到如果我添加 0dp
以外的其他内容,例如200dp
它扩展了视图。但我的印象是我应该使用0dp
来尊重约束
【问题讨论】:
【参考方案1】:这是一个使用ConstraintLayout
在其父级底部展开两个按钮的实现示例:
<?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_
android:layout_>
<Button
android:id="@+id/button1"
android:layout_
android:layout_
android:layout_marginStart="16dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="16dp"
android:text="Button 1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/button2"
app:layout_constraintHorizontal_chainStyle="spread"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:id="@+id/button2"
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:text="Button 2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/button1" />
</androidx.constraintlayout.widget.ConstraintLayout>
这和你的版本有什么区别。对于button1
,还有一个附加规则指示按钮的开始位置:app:layout_constraintStart_toStartOf="parent"
,相应地,button2
的结束位置是:app:layout_constraintEnd_toEndOf="parent"
。这实际上有助于ContraintLayout
正确布局按钮。
顺便说一句,您不需要将android:layout_alignParentBottom="true"
添加到您的按钮,因为父级不是RelativeLayout
。
【讨论】:
以上是关于使用约束布局链的按钮不均匀地占据父宽度的主要内容,如果未能解决你的问题,请参考以下文章