如何在ConstraintLayout中使用LinearLayout的权重?

时间:2019-04-11 18:03:44

标签: android android-layout android-view android-constraintlayout

我具有以下布局,并且希望与weightSum中的weightLinearLayout拥有相同的行为

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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">

    <LinearLayout
            android:id="@+id/linear_layout_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginStart="10dp"
            android:layout_marginTop="10dp"
            android:background="#a4c639"
            android:thelayout_constraintHorizontal_weight="5"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
    >
        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Title"
        />

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Main information"
        />
    </LinearLayout>



    <LinearLayout
            android:id="@+id/linear_layout_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="#a4c639"
            android:thelayout_constraintHorizontal_weight="5"

            android:layout_marginStart="10dp"
            app:layout_constraintTop_toTopOf="@id/linear_layout_1"
            app:layout_constraintStart_toEndOf="@id/linear_layout_1"
            app:layout_constraintTop_toBottomOf="@id/linear_layout_1"
    >
        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Title"
        />

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="foo"
        />
    </LinearLayout>

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Bar"
            android:thelayout_constraintHorizontal_weight="5"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@id/linear_layout_2"
            app:layout_constraintTop_toTopOf="@id/linear_layout_2"
            app:layout_constraintBottom_toBottomOf="@id/linear_layout_2"
            android:background="#a4c639"
    />

</android.support.constraint.ConstraintLayout>  

显示方式:
enter image description here

我希望所有3个小部件都占据1/3的空间。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:2)

要对ConstraintLayout使用权重,必须确保要加权的所有视图都形成。在这种情况下,我们将处理一个水平链,这意味着每个视图的开始+结束(或左+右)必须限制为其邻居或父视图。

例如:

<View
    android:id="@+id/first"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toStartOf="@id/second"
    .../>

<View
    android:id="@+id/second"
    app:layout_constraintStart_toEndOf="@id/first"
    app:layout_constraintEnd_toStartOf="@id/third"
    .../>

<View
    android:id="@+id/third"
    app:layout_constraintStart_toEndOf="@id/second"
    app:layout_constraintEnd_toEndOf="parent"
    .../>

如果您希望视图均匀分布,则应使用MATCH_CONSTRAINTS0dp)作为每个视图的宽度:

<View
    android:id="@+id/first"
    android:layout_width="0dp"
    .../>

<View
    android:id="@+id/second"
    android:layout_width="0dp"
    .../>

<View
    android:id="@+id/third"
    android:layout_width="0dp"
    .../>

如果要更改视图的加权方式,则必须在每个视图上指定权重(除了将宽度设置为0dp外)。在这里,中间视图将是两个侧视图的两倍:

<View
    android:id="@+id/first"
    app:layout_constraintHorizontal_weight="1"
    .../>

<View
    android:id="@+id/second"
    app:layout_constraintHorizontal_weight="2"
    .../>

<View
    android:id="@+id/third"
    app:layout_constraintHorizontal_weight="1"
    .../>