我具有以下布局,并且希望与weightSum
中的weight
和LinearLayout
拥有相同的行为
<?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>
我希望所有3个小部件都占据1/3的空间。我怎样才能做到这一点?
答案 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_CONSTRAINTS
(0dp
)作为每个视图的宽度:
<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"
.../>