如何为ConstraintLayout视图添加不同的权重

80
在我的布局中,我有一个包含两个TextView元素的ConstraintLayout。它们目前大小相同,但我希望它们采用6:4比例具有不同的权重。
如何在我的ConstraintLayout中实现这一点?

1
您可以通过使用屏障来实现这一点。 - MashukKhan
4个回答

178

在XML中

创建一个水平链,然后使用app:layout_constraintHorizontal_weight属性:

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

    <TextView
        android:id="@+id/one"
        android:layout_width="0dp"
        android:layout_height="48dp"
        android:background="#caf"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/two"
        app:layout_constraintHorizontal_weight="6"/>

    <TextView
        android:id="@+id/two"
        android:layout_width="0dp"
        android:layout_height="48dp"
        android:background="#fac"
        app:layout_constraintLeft_toRightOf="@+id/one"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintHorizontal_weight="4"/>

</android.support.constraint.ConstraintLayout>

在此输入图像描述

Java中

创建你的视图并将它们添加到父ConstraintLayout。为了让一切正常工作,你需要为它们分配一个id;你可以使用View.generateViewId()或者为它们定义一个id资源。

// this will be MATCH_CONSTRAINTS width and 48dp height
int height = (int) (getResources().getDisplayMetrics().density * 48);
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(0, height);

View left = new View(this);
left.setId(R.id.one);
parent.addView(left, params);

View right = new View(this);
right.setId(R.id.two);
parent.addView(right, params);

然后创建一个ConstraintSet对象并创建你的链:

ConstraintSet set = new ConstraintSet();
set.clone(parent);

int[] chainIds = { R.id.one, R.id.two }; // the ids you set on your views above
float[] weights = { 6, 4 };
set.createHorizontalChain(ConstraintSet.PARENT_ID, ConstraintSet.LEFT,
                          ConstraintSet.PARENT_ID, ConstraintSet.RIGHT,
                          chainIds, weights, ConstraintSet.CHAIN_SPREAD);

set.applyTo(parent);

嗨,这个能通过编程实现吗? - Demigod
@Demigod 我已经更新了我的答案,展示了如何以编程方式实现。 - Ben P.
为什么两个元素之间的约束基本上需要定义两次呢?我的意思是:A在B的左边,与B在A的右边不是同样的意思吗? - Rowan Gontier
5
@RowanGontier,因为链式布局只有在视图之间存在双向依赖关系时才会形成。如果 A 在 B 左边,则 A 依赖于 B。但是,如果我们不同时指定 B 在 A 右边,那么 B 就不知道 A 的任何信息,并且无法根据 A 调整自身大小。 - Ben P.
谢谢,但如果我需要将一个视图的宽度设置为另一个视图宽度的一半,我该怎么做? - kirkadev

29

经过一些研究,我找到了使用指南视图的另一种解决方案。

<?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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white">

<TextView
    android:id="@+id/textView3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="@color/green_color"
    android:fontFamily="@font/overpass_light"
    android:textAllCaps="true"
    android:textColor="@color/dark_grey_button"
    android:textSize="@dimen/h5"
    app:layout_constraintEnd_toStartOf="@+id/guideline"
    app:layout_constraintStart_toStartOf="parent"/>

<TextView
    android:id="@+id/textView4"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="@color/grey_text"
    android:fontFamily="@font/overpass_light"
    android:textAllCaps="true"
    android:textColor="@color/dark_grey_button"
    android:textSize="@dimen/h5"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="@+id/guideline"
    app:layout_constraintTop_toTopOf="parent"/>

<android.support.constraint.Guideline
    android:id="@+id/guideline"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_constraintGuide_percent="0.6"
    />


  </android.support.constraint.ConstraintLayout>

这是上述布局的截图。您只需拖动指南视图即可。 拖动%将显示您的指南视图


10

您还可以使用app:layout_constraintWidth_percent来实现所需的视图。

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

    <TextView
        android:id="@+id/textView1"
        android:layout_width="0dp"
        android:layout_height="50dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintWidth_percent="0.6"
        android:text="6"
        android:textStyle="bold"
        android:textAlignment="center"
        android:paddingTop="15dp"
        android:background="#ffb7b7"/>

    <TextView
        android:id="@+id/textView2"
        android:layout_width="0dp"
        android:layout_height="50dp"
        app:layout_constraintStart_toEndOf="@id/textView1"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintWidth_percent="0.4"
        android:text="4"
        android:textStyle="bold"
        android:textAlignment="center"
        android:paddingTop="15dp"
        android:background="#b7b8ff"/>

</androidx.constraintlayout.widget.ConstraintLayout>

以下是上述布局的屏幕。

enter image description here

如果您需要将视图垂直排列,则可以使用app:layout_constraintHeight_percent,并在这种情况下将android:layout_height设置为0dp。

-3

您可以使用app:layout_constraintHorizontal_weight在视图中应用链接的spread_inside并给予权重。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接