添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

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

74 人关注

在我的布局中,我有一个 ConstraintLayout 包含两个 TextView 元素。它们目前是相同的尺寸,但我希望它们有不同的权重,比例为 6:4

如何在我的 ConstraintLayout 中实现这一点?

1 个评论
你可以通过使用屏障来实现这一点
android
android-layout
android-constraintlayout
Prashant Jajal
Prashant Jajal
发布于 2018-02-08
4 个回答
Ben P.
Ben P.
发布于 2018-02-08
已采纳
0 人赞同

In 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>

In 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 我已经更新了我的答案,显示了如何以编程的方式进行。
为什么两个元素之间的约束基本上需要定义两次?我的意思是:A在B的左边,就等于B在A的右边?
@RowanGontier 因为只有当观点之间存在双向的依赖关系时,链才会形成。如果A在B的左边,那么A就依赖于B。但如果我们不同时说B在A的右边,那么B就不知道关于A的任何事情,也没有办法确定自己与A的关系。
谢谢你,但是如果我需要一个视图的宽度作为另一个视图的一半宽度,我应该怎么做?
Prashant Jajal
Prashant Jajal
发布于 2018-02-08
0 人赞同

经过一些研究,我找到了其他具有指导意义的解决方案。

<?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>

这是上述布局的屏幕截图。你只需拖动准则视图。

Kartikeya_M
Kartikeya_M
发布于 2018-02-08
0 人赞同

你也可以使用 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>