如何将视图宽度设置为父宽度的百分比-ConstraintLayout中的页边空白?

问题描述 投票:0回答:1

我想创建一个如下图所示的布局:

enter image description here

因此每个按钮占用50%的宽度(父级宽度-留有空白的空间]

如果我将layout_constraintWidth_percent设置为0.5,则无法使用。我可以使用LinearLayout和权重实现此目标,但是如何使用ConstraintLayout做到这一点?

这是我使用的布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    >

  <Button
      android:id="@+id/other_options"
      style="?tertiaryButtonStyle"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_margin="@dimen/half_pad"
      android:text="@string/report_suicide_other_options_action"
      app:layout_constraintWidth_percent="0.5"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      />

  <Button
      android:id="@+id/yes"
      style="?primaryButtonStyle"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_margin="@dimen/half_pad"
      android:text="@string/action_yes"
      app:layout_constraintWidth_percent="0.5"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toEndOf="@+id/other_options"
      />

</androidx.constraintlayout.widget.ConstraintLayout>
android android-constraintlayout
1个回答
1
投票

只需添加:

app:layout_constraintEnd_toStartOf="@+id/yes"

至ID为Buttonother_options

您可以删除

app:layout_constraintWidth_percent="0.5"

通过两个按钮。

© www.soinside.com 2019 - 2024. All rights reserved.