ConstraintLayout 使用总结

前言

  • 首先来看下官方文档的介绍:

    A ConstraintLayout is a ViewGroup which allows you to position and size
    widgets in a flexible way。

    可以把 ConstraintLayout 理解为 RelativeLayout 的升级版

  • 优势

    ConstraintLayout 可以大大的减少布局嵌套,在测量/布局阶段的性能比 RelativeLayout 大约高 40%

    参考文章:
    解析 ConstraintLayout 的性能优势

  • 准备工作

    • AndroidStudio 的版本请升级到 2.2 及以上

    • 在 app 下的 build.gradle 添加以下依赖

      compile 'com.android.support.constraint:constraint-layout:1.0.2'

实践

  • 在 xml 文件中添加一个居中显示的 Button

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout ...>
    
        <Button
            android:id="@+id/btnA"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="A"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"/>
    
    </android.support.constraint.ConstraintLayout>
    
01.png

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

  • 在 ButtonA 的上方添加一个 ButtonB ,左侧对齐,间隔 10 dp

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android" ...>
    
        <Button
            android:id="@+id/btnA"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="A" .../>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:text="B"
            app:layout_constraintBottom_toTopOf="@id/btnA"
            app:layout_constraintLeft_toLeftOf="@id/btnA"/>
    
    </android.support.constraint.ConstraintLayout>
    
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

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

  • Bias

    Bias 即偏压的意思,可以设置约束偏相某一侧的压力。属性如下:

    app:layout_constraintVertical_bias
    app:layout_constraintHorizontal_bias

    取值范围为 0 ~ 1,尝试使用这个两个属性,在屏幕的右下方添加一个 FloatingActionButton

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android" ...>
    
        <android.support.design.widget.FloatingActionButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintHorizontal_bias="0.9"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="0.9"/>
    
    </android.support.constraint.ConstraintLayout>
    
03.png
  • Guideline

    Guideline 为辅助线,不会在界面上显示,用于辅助布局。其属性

    android:orientation 取值为 vertical 或 horizontal

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"...>
    
        <android.support.constraint.Guideline
            android:id="@+id/guideline_v"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            app:layout_constraintGuide_percent="0.5"/>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="LEFT"
            app:layout_constraintRight_toLeftOf="@id/guideline_v"
            app:layout_constraintTop_toTopOf="parent"/>
    
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="RIGHT"
            app:layout_constraintLeft_toRightOf="@id/guideline_v"/>
    
    </android.support.constraint.ConstraintLayout>
    
0.4.png

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

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

  • Chain

    Chain链可以通过两两交叉,平分屏幕剩余空间。实现 LinearLayout 的 android:layout_weight 等分效果

     <?xml version="1.0" encoding="utf-8"?>
      <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"...>
    
          <TextView
              android:id="@+id/tv_a"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:background="#FFDF769A"
              android:gravity="center"
              android:text="A"
              android:textSize="20sp"
              app:layout_constraintHorizontal_chainStyle="spread"
              app:layout_constraintLeft_toLeftOf="parent"
              app:layout_constraintRight_toLeftOf="@id/tv_b"/>
    
          <TextView
              android:id="@+id/tv_b"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:background="#FFD14172"
              android:gravity="center"
              android:text="B"
              android:textSize="20sp"
              app:layout_constraintLeft_toRightOf="@id/tv_a"
              app:layout_constraintRight_toLeftOf="@id/tv_c"/>
    
          <TextView
              android:id="@+id/tv_c"
              android:layout_width="0dp"
              android:layout_height="wrap_content"
              android:background="@color/colorAccent"
              android:gravity="center"
              android:text="C"
              android:textSize="20sp"
              app:layout_constraintLeft_toRightOf="@id/tv_b"
              app:layout_constraintRight_toRightOf="parent"/>
    
      </android.support.constraint.ConstraintLayout>
    
05.png

app:layout_constraintHorizontal_chainStyle 一共有三种模式

spread

spread_inside

packed

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

chains-styles.png

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

结语

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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,784评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,745评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,702评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,229评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,245评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,376评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,798评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,471评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,655评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,485评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,535评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,235评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,793评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,863评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,096评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,654评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,233评论 2 341

推荐阅读更多精彩内容