赞
踩
Chains
(链)是一种特定的约束,一个链包含了多个视图,它允许链中的视图共享空间,并控制可用空间在它们之间如何分配。该效果与 LinearLayout
的 Weiget
类似,但是链的作用远远超过它。
Cycle Chain Mode(链式模式)来告诉 Chains
:“你应该怎样去填充剩余的空间”。
layout_constraintHorizontal_chainStyle
layout_constraintVertical_chainStyle
分别对应着「水平链」和「垂直链」。
有三种可选的参数:
除了上面说的之外,Chains
还能对链中单独的视图控件设置 Weiget
。因为目前并不支持在编辑器当中设置 Weiget
,所以我们只能在布局中进行设置了,设置的属性是:
layout_constraintHorizontal_weight
layout_constraintVertical_weight
我们现在将第一个 Button
填充完剩余的空间,在该 Buttton
上设置如下属性:
android:layout_width="0dp"
app:layout_constraintHorizontal_weight="1"
:这个代表的是:Match Constraints
(有点类似于 match_parent
),就给强翻成约束匹配吧… 这个是 ConstraintLayout
特有的,它会尽可能扩展以满足各方的约束(在考虑视图边界之后)。但是,可以使用以下属性和值修改该行为(只有在将视图宽度设置为与约束匹配时,这些属性才会生效):
wrap_content
不同的是,虽然都是适应内容,但仍然允许视图比约束要求的视图更小。当宽高至少有一项设置为 0dp 时(也就是 Match Constraints
),那么我们就可以为该视图设置宽高比例。设置的属性是:
layout_constraintDimensionRatio
<Button
android:id="@+id/button"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="button"
app:layout_constraintDimensionRatio="3:1"/>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。