ConstraintLayout 使用总结

2017-11-23  本文已影响89人  13kmsteady

前言

实践

01.png

可以看到,给 Button 的 上下左右 都添加了约束,并且是相对 parent 的约束。如果一个控件没有添加任何约束,运行之后自动位于屏幕的左上角

02.png

app:layout_constraintLeft_toLeftOf 约束 ButtonB 的左侧和 ButtonA
的左侧对齐,和 RelativeLayout 的 android:layout_alignLeft 效果一样

app:layout_constraintBottom_toTopOf 约束 ButtonB 的底部在 ButtonA 的顶部,和 RelativeLayout 的 android:layout_above 效果一样

相信你对 ConstraintLayout 的属性有一定的理解了,下面简单的将 ConstraintLayout 和 RelativeLayout 的常用属性做一个对比

RelativeLayout ConstraintLayout
android:layout_toLeftOf app:layout_constraintRight_toLeftOf
android:layout_toRightOf app:layout_constraintLeft_toRightOf
android:layout_above app:layout_constraintBottom_toTopOf
android:layout_below app:layout_constraintTop_toBottomOf
android:layout_alignLeft app:layout_constraintLeft_toLeftOf
android:layout_alignRight app:layout_constraintRight_toRightOf
android:layout_alignTop app:layout_constraintTop_toTopOf
android:layout_alignBottom app:layout_constraintBottom_toBottomOf
android:layout_alignBaseline app:layout_constraintBaseline_toBaselineOf

其实这些属性所显示的效果是一样的,那么我们为什么还要费力气学习这个布局了,下面介绍下这个布局自己独有的属性:

03.png 0.4.png

app:layout_constraintGuide_percent 的意思为占父容器 宽度高度 的比例。除此之外,Guideline 还有以下两个属性:

app:layout_constraintGuide_begin 距离父容器 左侧顶部 的距离
app:layout_constraintGuide_end 距离父容器 右侧底部 的距离

05.png

app:layout_constraintHorizontal_chainStyle 一共有三种模式

spread

spread_inside

packed

套用官方的一张图一看便知

chains-styles.png

给每个 View 添加 app:layout_constraintHorizontal_weight 属性,就可以实现 LinearLayout 的按比例展示,等价于上图的第三条展示效果。

结语

ConstraintLayout 融合了 RelativeLayout 和 LinearLayout 的特性,有效的减少了布局的嵌套。以上就是笔者在日常工作中,对 ConstraintLayout的一些用法。第一次写博,不足之处,欢迎大家指证。

上一篇下一篇

猜你喜欢

热点阅读