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

在我的布局中,我有一个包含两个 TextView元素的 ConstraintLayout。他们目前是相同的大小,但我希望他们有一个 6:4比率不同的重量。

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

54053 次浏览

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>

enter image description here

用爪哇语

创建视图并将其添加到父 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);

您可以使用 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"
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>

这里是上面布局的屏幕截图。你只需要拖动指南视图。 drag the % wish shows your guideline view

您还可以使用 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。