android:id=“@+id/button2”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“Button”
app:layout_constraintLeft_toRightOf=“@+id/button1”
app:layout_constraintRight_toLeftOf=“@+id/button3”
tools:layout_editor_absoluteY=“69dp”/>
我们刚刚创建好了一条链,此时我们可以设置 Cycle Chain Mode
(链式模式)来告诉 Chains
:“你应该怎样去填充剩余的空间”。
在「蓝图」中,设置的方式是点击链条的小图标:
在「布局」中,设置的属性是:
layout_constraintHorizontal_chainStyle
layout_constraintVertical_chainStyle
分别对应着「水平链」和「垂直链」。
有三种可选的参数:
- spread:将可用空间以均匀分布的方式将视图放置在链中(默认模式):
- spread_inside:将链中最外面的视图对齐到外边缘,然后在可用空间内均匀的放置链中的其他视图:
- packed:将链中的视图紧紧的放在一起(可以提供边距让其分开),然后让其居中在可用空间内:
除了上面说的之外,Chains
还能对链中单独的视图控件设置 Weiget
。因为目前并不支持在编辑器当中设置 Weiget
,所以我们只能在布局中进行设置了,设置的属性是:
layout_constraintHorizontal_weight
layout_constraintVertical_weight
我们现在将第一个 Button
填充完剩余的空间,在该 Buttton
上设置如下属性:
android:layout_width=“0dp”
app:layout_constraintHorizontal_weight=“1”