1.目录
- 布局嵌套减少,提高性能,具体可点击跳转查看
- 正文背景
- 百分比布局
- 宽高比布局
- goneMargin
- Group
- 居中和偏移
- 居中和偏移
- 360度无死角定位布局
- Barrier
- GuideLine
- PlaceHolder
- ConstraintSet
- 官方文档链接
- 我说
2.正文背景
约束布局顾名思义ConstraintLayout里的子view通过一些约束来确定自己的显示(位置,大小等)。
子view上下左右的约束属性有以下几个,子view的约束对象可以是其他子view,也可以是ConstraintLayout,因此以下属性的值可以是其他子view的id,也可以是"parent"表示ConstraintLayout
layout_constraintLeft_toLeftOf ===> 子view左边受哪个view的左边的约束,如此类推
layout_constraintLeft_toRightOf
layout_constraintRight_toLeftOf
layout_constraintRight_toRightOf
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
layout_constraintStart_toEndOf
layout_constraintStart_toStartOf
layout_constraintEnd_toStartOf
layout_constraintEnd_toEndOf
layout_constraintBaseline_toBaselineOf
ConstraintLayout和其他布局下的子view的宽高属性值略有不同。主要体现在充满父布局的属性值不同,其他布局的充满父布局属性为match_parent和约束布局的为match_constraint(即0dp)
注意:match_constraint的表现受layout_constraintXXX_default值的影响
==spread:充满约束空间 默认情况
==wrap:匹配内容大小但不超过约束限制
==percent:百分比布局
3.百分比布局:屏幕适配
前提条件:width或height必须为match_constraint(即0dp),否则百分比布局无效
使用方式:android:layout_width="0dp" app:layout_constraintWidth_default="percent" app:layout_constraintWidth_percent="1"
4.宽高比
app:layout_constraintDimensionRatio="w,1:2"
如果要约束w(宽)(即高是定的),w开头,宽高比;h开头,高宽比。
如果要约束h(高)(即宽是定的),h开头,宽高比;w开头,高宽比。
如果宽高同时为0dp(宽高都可定的话),那么w开头,表示高定约束宽,宽高比;h开头,表示宽定约束高,宽高比
5.goneMargin:约束view消失后才起作用的Margin属性
6.Group统一控制多个控件的显示或隐藏。group的visibility属性比view本身的优先级最高,而且constraint_referenced_ids只能引用约束布局下的直接子view的id。
7.居中和偏移
8.链式布局
9.360度无死角定位布局
10.Barrier与多个控件集合的某边对齐
11.GuideLine,当没有合适约束view的时候,可以创建一个guideline作为约束view
12.PlaceHolder 用placeholder中的约束条件替换对应id的view的约束条件
应用场景:作为位置模板,引入后只需要写内容view;通过代码动态改变内容,结合TransitionManager可以做一些有趣的过渡动画等