ConstraintLayout完全解析

一、概述

ConstraintLayout(约束布局),是Google在2016年推出的一种布局,其简单、扁平化的使用方式,深得广大开发者的喜爱。这篇文章我们不探讨其性能方面的优势。意在于和大家一起学习ConstraintLayout的相关使用。

implementation 'com.android.support.constraint:constraint-layout:1.1.2'
二、可视化界面的使用

Android Studio 2.2开始提供了对ConstraintLayout可视化的操作。对于可视化操作方面内容。这里大家可以通过郭霖大神的博客进行学习。

三、属性介绍

属性介绍是我们ConstraintLayout重点要学习的部分。可视化界面只是简化了我们使用,对它所使用的属性,我们要至少知道其意,并可以进行简单的修改和手写布局。
1、相对位置属性

  • layout_constraintLeft_toLeftOf :当前View的左侧和另一个View的左侧位置对齐
  • layout_constraintLeft_toRightOf :当前view的左侧会在另一个View的右侧位置
  • layout_constraintRight_toLeftOf :当前view的右侧会在另一个View的左侧位置
  • layout_constraintRight_toRightOf :当前View的右侧和另一个View的右侧位置对齐
  • layout_constraintTop_toTopOf :头部对齐
  • layout_constraintTop_toBottomOf :当前View在另一个View的下侧
  • layout_constraintBottom_toTopOf :当前View在另一个View的上方
  • layout_constraintBottom_toBottomOf :底部对齐
  • layout_constraintBaseline_toBaselineOf :文字底部对齐
  • layout_constraintStart_toEndOf :同left_toRightOf
  • layout_constraintStart_toStartOf :同left_toLeftOf
  • layout_constraintEnd_toStartOf :同right_toLeftOf
  • layout_constraintEnd_toEndOf :同right_toRightOf

从ConstraintLayout的相对位置属性可以看出和我们的RelativeLayout很相似,这也是有人将ConstraintLayout成为增强型的相对布局的原因,不过,其实现思想是完全不同的。从下面的例子我们可以看出来。

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/btA"
        android:layout_width="148dp"
        android:layout_height="wrap_content"
        android:text="ButtonA"
        />
    <Button
        android:id="@+id/btB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="ButtonB"
        android:layout_toRightOf="@id/btA"
        android:layout_alignParentRight="true"
        />
</RelativeLayout>
1-1

在图片1-1中,我们使用RelativeLayout布局实现ButtonB在ButtonA的右侧并填满右侧空间,我们将ButtonB的width设置为wrap_content,并且使用 android:layout_toRightOf="@id/btA"和android:layout_alignParentRight="true"两个相对属性。现在我们将布局改为ConstraintLayout并将相对属性改为app:layout_constraintEnd_toEndOf="parent"app:layout_constraintStart_to
EndOf="@+id/buttonB"

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="buttonB"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/buttonA" />

    <Button
        android:id="@+id/buttonA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="buttonA"
        />
</android.support.constraint.ConstraintLayout>
1-2

我们通过对比可以发现ButtonB同样是wrap_content,但是我们的RelativeLayout会改变我们的View大小。而ConstraintLayout并不会,他会像橡皮筋一样拉着我们的View使他在我们的右侧居中。并不会改变view的大小。当我们的View宽度足够大的时候超过了我们又侧剩余宽度。也只是如1-3一样,左右两侧的约束一样大,使之感觉还是居中的。宽度还是我们设置的宽度并未被改变


1-3

接下来,如果我们想要让我们的ConstraintLayout实现的效果和RelativeLayout一样。官方给我们提供了一个match_constrain也就是0dp,我们为ButtonB的宽度设置为match_constrain(0dp)就可以将我们的ButtonB填满我们右侧的布局了。而官方对match_constrain的解释为

  • Important: MATCH PARENT is not supported for widgets contained in a ConstraintLayout, though similar behavior can be defined by using MATCH CONSTRAINT with the corresponding left/right or top/bottom constraints being set to “parent”.

可以理解为在ConstraintLayout中已经不支持MATCH_PARENT,你可以通过MATCH_CONSTRAINT配合约束实现类似的效果。

理解了上面的内容我们来看一下类似的内容:强制约束。当我们的ButtonB的width设置为wrap_content的时候,而我们的ButtonB的内容过长就会像下图一样。导致约束失效。


1-4

而为了防止约束失效,在1.1.0版本中新增了一下属性。

  • app:layout_constrainedWidth=”true|false” //默认false
  • app:layout_constrainedHeight=”true|false” //默认false
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/buttonA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="buttonA"
        />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="buttonbuttonbuttonbuttonbuttonbuttonbutton"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/buttonA"
        app:layout_constrainedWidth="true"
    />

</android.support.constraint.ConstraintLayout>
1-5

2、GoneMargin

  • layout_goneMarginStart
  • layout_goneMarginEnd
  • layout_goneMarginLeft
  • layout_goneMarginTop
  • layout_goneMarginRight
  • layout_goneMarginBottom
    我们对Margin这个属性应该很熟悉,GoneMargin也很简单,他的含义就是当一个控件和另一个控件绑定后,如果另一个控件设置为Gone则,GoneMargin这组属性会生效。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/buttonA"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="buttonA"
        android:visibility="gone"
        />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="buttonB"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/buttonA"
        app:layout_goneMarginLeft="40dp"
        />
</android.support.constraint.ConstraintLayout>
2-1

3、Chains(链)
链使我们能够对一组在水平或竖直方向互相关联的控件的属性进行统一管理。成为链的条件:一组控件它们通过一个双向的约束关系链接起来,首尾对parent约束。 并且链的属性是由一条链的头结点控制的,如下:


3-1

Chains Style:链的样式有三种packed,spread_inside,spread

 app:layout_constraintHorizontal_chainStyle="packed | spread_inside | spread"
3-2
  • Spread Chain:Style为spread的时候。
  • Spread Chain:Style为spread_inside的时候。
  • Weighted Chain:当Style为spread,width为0dp,可以使用Weighted属性等分(Weighted属性和线性布局的weighted用法相同)
  • Packed Chain 当Style为packed的时候。
  • Packed Chain with Bias,当Style为packed,并且设置了Bias属性。Bias属性下部分会讲解
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/bt_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="A"
        app:layout_constraintHorizontal_chainStyle="packed"
        app:layout_constraintEnd_toStartOf="@+id/bt_2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/bt_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="B"
        app:layout_constraintEnd_toStartOf="@+id/bt_3"
        app:layout_constraintStart_toEndOf="@+id/bt_1"
        app:layout_constraintTop_toTopOf="@+id/bt_1" />

    <Button
        android:id="@+id/bt_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="c"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/bt_2"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

4、MATCH_CONSTRAINT
上边我们说过ConstraintLayout取消了MATCH_PARENT由MATCH_CONSTRAINT来代替,默认大小占用所有约束可用空间,并提供了以下属性辅助我们使用。

  • layout_constraintWidth_min 设置最小宽度
  • layout_constraintHeight_min 设置最小高度
  • layout_constraintWidth_max 设置最大宽度
  • layout_constraintHeight_max 设置最大高度
  • layout_constraintWidth_percent 设置宽度相对父类宽度百富比
  • layout_constraintHeight_percent 设置高度相对父类高度的百分比

5、百分比布局
约束布局支持子控件设置宽高比,前提条件是至少需要将宽高中的一个设置为0dp。为了约束一个特定的边,基于另一个边的尺寸,可以预先附加W,或H以逗号隔开。

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="0dp"
        android:layout_height="0dp"//高度基于宽度的尺寸所以高度为0dp,否则百分比属性无效
        android:text="A"
        app:layout_constraintDimensionRatio="H,16:9"//约束高度基于宽度的尺寸。
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>
5-1

6、Guideline 辅助线
Guideline辅助线是一条宽或高为0dp的一个看不见的线,和LinearLayout一样都有orientation属性设置横向或垂直。有三种定位方式

  • layout_constraintGuide_begin 距离父容器起始位置的距离(左侧或顶部)垂直的辅助线使用
  • layout_constraintGuide_end 距离父容器结束位置的距离(右侧或底部)水平的辅助线使用
  • layout_constraintGuide_percent 距离父容器宽度或高度的百分比(垂直或水平的辅助线都可以使用)

例:设置一条垂直方向距离父控件左侧为100dp的Guideline:

<android.support.constraint.Guideline
        android:layout_width="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_begin="100dp"
        android:layout_height="wrap_content"/>

7、Group为ConstraintLayout布局中的子控件进行分组,可控制多个布局控件统一的可见性

    <android.support.constraint.Group
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"//设置可见性
        app:constraint_referenced_ids="bt1,bt2"//要管理的控件id
       />
        <Button
            android:id="@+id/bt1"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:text="A"
            />
        <Button
            android:id="@+id/bt2"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:text="A"
            />

8、Barrier,屏障,在约束布局中,可以将几个View作为一个整体来使用,让其他布局关联约束这个整体。注意设置他的visibility不能控制这个整体的可见性。我们看一个例子。

<TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="姓名:"
        app:layout_constraintBottom_toBottomOf="@+id/et_name"
        app:layout_constraintTop_toTopOf="@+id/et_name"/>

    <TextView
        android:id="@+id/tv_contract"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text="联系方式:"
        app:layout_constraintBottom_toBottomOf="@+id/et_contract"
        app:layout_constraintTop_toTopOf="@+id/et_contract"/>

    <EditText
        android:id="@+id/et_name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="请输入姓名"
        app:layout_constraintLeft_toLeftOf="@+id/barrier"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

    <EditText
        android:id="@+id/et_contract"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:hint="请输入联系方式"
        app:layout_constraintLeft_toLeftOf="@+id/barrier"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/et_name"/>

    <android.support.constraint.Barrier
        android:id="@+id/barrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="right"
        app:constraint_referenced_ids="tv_name,tv_contract"/>
8-1

这里我们把A区域中的姓名和联系方式用Barrier关联成一个整体。而右侧的B区域中的EditText分别关联约束这个Barrier整体。当Barrier整体中的TextView的宽度发生改变时,Barrier整体也是变化的,右侧的B区域的宽度也会随之改变。
9、Circular positioning (圆形定位)

  • 您可以将一个控件的中心以一定的角度和距离约束到另一个控件的中心,相当于在一个圆上放置一个控件。
<Button android:id="@+id/buttonA" ... />
  <Button android:id="@+id/buttonB" ...
      //引用的控件ID
      app:layout_constraintCircle="@+id/buttonA"
      //圆半径
      app:layout_constraintCircleRadius="100dp"
      //偏移圆角度  水平右方向为0逆时针方向旋转
      app:layout_constraintCircleAngle="45" />
9-1

10、bias 权重

  • 当一个控件拥有水平方向(左右两个约束)或者垂直方向(上下两个约束)的时候,我们可以通过app:layout_constraintHorizontal_bias
    ="0.16"或 app:layout_constraintVertical_bias="0.303"两个属性来对两个方向的约束进行百分比的调整。让控件按百分比偏向一方。当不设置是默认是0.5居中的效果。
    <Button
        android:id="@+id/bt1"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:text="A"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.2" />
10-1

参考文章:

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

推荐阅读更多精彩内容