欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ConstraintLayout

程序员文章站 2022-06-08 09:22:52
...

0、相关文章

Android 约束布局(ConstraintLayout)详解(文章1:阅读量2w,12赞)

Android新特性介绍,ConstraintLayout完全解析(郭霖,阅读来呢28w)

约束布局——ConstraintLayout

Android 入门——ConstraintLayout详解以及使用替代你的常规布局

ConstraintLayout约束布局详解

1、为什么使用ConstraintLayout

在绘制复杂UI时,由于Android绘制视图是根据Z-Order机制,一层层迭代绘制,如果布局嵌套过多,UI层级过深,设备在绘制时所需的时间以及计算功耗就会过多,内存占用也就越多,由于绘制是在UI线程执行,而UI线程不能做耗时操作,所以就需要减少布局嵌套过多。

普通的LinearLayout和RelativeLayout,在绘制简单的布局时可以使用,但是在复杂的布局时,就会出现嵌套问题。而ConstraintLayout属于扁平化处理,可以按照比例约束控件位置和尺寸,因此在Android碎片化如此严重的情况下,这个特点太重要了。

2、如何使用ConstraintLayout

2.1、添加依赖

implementation 'com.android.support.constraint:constraint-layout:1.1.3'

2.2、相对定位

app:layout_constraintLeft_toLeftOf="parent" // 当前控件与其父布局左对齐
app:layout_constraintLeft_toRightOf="parent" // 当前控件左与其父布局右对齐,若父布局设置了width,则子控件会不可见
app:layout_constraintRight_toLeftOf="parent" // 当前控件右与其父布局左对齐,若父布局设置了width,则子控件会不可见
app:layout_constraintRight_toRightOf="parent" // 当前控件与其父布局右对齐
app:layout_constraintTop_toTopOff="parent" // 当前控件与其父布局顶部对齐
app:layout_constraintBottom_toBottomOf="parent" // 当前控件与其父布局底部对齐
app:layout_constraintTop_toBottomOff="other" // 当前控件在other底部
app:layout_constraintBottom_toTopOf="other" // 当前控件在other顶部部
app:layout_constraintStart_toEndOf
app:layout_constraintStart_toStartOf
app:layout_constraintEnd_toStartOf
app:layout_constraintEnd_toEndOf
app:layout_constraintBaseline_toBaselineOf="other" // 当前控件与other的内容水平对齐


 

相关标签: Material Design