实战篇ConstraintLayout的崛起之路

一、简介

为啥会取这个标题,绝不是为了噱头,源于最近看了一部国产漫画一武庚纪2,剧情和画质都非常棒的良心之作,且看武庚的崛起 。。。

回忆当初稍微复杂的界面,布局的层级嵌套多层,布局最终会解析成 View 的树形结构,这对渲染性能产生了一定的影响,并且也增大了代码的维护难度。Google 工程师正是考虑到这一因素,推出了 ConstraintLayout

二、ConstraintLayout

ConstraintLayout 翻译为 约束布局,也有人把它称作 增强型的相对布局,由 2016 年 Google I/O 推出。扁平式的布局方式,无任何嵌套,减少布局的层级,优化渲染性能。从支持力度而言,将成为主流布局样式,完全代替其他布局。有个成语用的非常好,集万千宠爱于一身,用到这里非常合适,约束集 LinearLayout(线性布局),RelativeLayout(相对布局),百分比布局等的功能于一身,功能强大,使用灵活。纸上得来终觉浅,绝知此事要躬行。让我们在实际开发的场景中去检验约束布局,在实战中积累经验。

接下来我会以实际开发中遇到的几个场景来讲解。

题外话,本文需要您对 ConstraintLayout 有一定的熟悉了解度,若您对 ConstraintLayout 不熟悉请链接一下地址:

ConstraintLayout 官方文档

郭霖大神的Android新特性介绍,ConstraintLayout完全解析

1、Circular positioning(圆形定位)

标题后面的中文是自己翻译的,可能不是很准确。

官方文档是这么介绍的:

You can constrain a widget center relative to another widget center, at an angle and a distance. This allows you to position a widget on a circle

我是这么理解的,您可以将一个控件的中心以一定的角度和距离约束到另一个控件的中心,相当于在一个圆上放置一个控件。

示例代码如下:

<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" />

效果图:

c_1

图文并茂,理解起来较容易些。圆形定位使用其他布局是很难实现的(除自定义外),该功能在实际的开发中用的并不多,可以用来实现类似钟表的效果。该功能只不过是约束布局的冰山一角,且往下看。

2、WRAP_CONTENT : enforcing constraints(强制约束)

官方文档是这么介绍的:

If a dimension is set to WRAP_CONTENT, in versions before 1.1 they will be treated as a literal dimension -- meaning, constraints will not limit the resulting dimension. While in general this is enough (and faster), in some situations, you might want to use WRAP_CONTENT, yet keep enforcing constraints to limit the resulting dimension. In that case, you can add one of the corresponding attribute

英文一直是我的弱项,我是这么理解的,1.1.0 版本之前是没有这个功能的,说的是控件的宽设置为 WRAP_CONTENT (包裹内容)时,如果实际宽度超过了约束的最大宽度,那么约束会失效(高同理),为了防止约束失效,增加了以下属性:

  • app:layout_constrainedWidth=”true|false” //默认false
  • app:layout_constrainedHeight=”true|false” //默认false

官网并没有过多说明,那么怎么去理解呢,接下来以app:layout_constrainedWidth属性来看两个例子。

a、例子

c_2

B 控件位于 A 控件右侧与屏幕右侧的中间。代码如下:

    <Button        android:id="@+id/bt_1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="16dp"        android:text="A"        app:layout_constraintLeft_toLeftOf="parent"/>    <Button        android:id="@+id/bt_2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="B"        app:layout_constraintLeft_toRightOf="@+id/bt_1"        app:layout_constraintRight_toRightOf="parent"        app:layout_constraintTop_toBottomOf="@id/bt_1"/>

那么我改变 B 控件的内容,使宽度增大:

c_3

通过效果图可以得出,给 B 控件添加的左右约束失效。为了防止约束失效,在 1.1.0 版本中新增了app:layout_constrainedWidth="true"属性。注意控件的左右都应该有约束条件, 如下:

app:layout_constraintLeft_toRightOf="@+id/bt_1" //控件的左边位于xx控件的右边app:layout_constraintRight_toRightOf="parent"   //控件的右边位于xx控件的右边

效果图如下:

c_4

app:layout_constrainedWidth="true" 会导致渲染变慢,变慢时长可忽略不计。

b、例子

产品部的美女提出了这样的一个需求,看图:

c_5

AB 两控件,BA 的右侧,随着 AB 宽度的增加,B 始终在 A 的右侧,当 AB 控件的宽度之和大于父控件的宽度时,B 要求被完全显示,同时 A 被挤压。我相信大家肯定也遇到过类似的需求,并且相当不好处理,只通过布局文件,不论是使用线性布局,还是相对布局都没法实现。当初我是通过计算文本的宽度来控制父控件的左右对齐方式来实现的,并且有误差。那么ConstraintLayout又是怎么只通过布局文件去实现的呢?

代码如下:

    <Button        android:id="@+id/bt_1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"        app:layout_constrainedWidth="true" // 设置为true        app:layout_constraintHorizontal_bias="0" // 设置水平偏好为0        app:layout_constraintHorizontal_chainStyle="packed" //设置链样式        app:layout_constraintLeft_toLeftOf="parent"        app:layout_constraintRight_toLeftOf="@+id/bt_2"        app:layout_constraintTop_toTopOf="parent"/>    <Button        android:id="@+id/bt_2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="BBBBBBBBBBB"        app:layout_constrainedWidth="true"        app:layout_constraintLeft_toRightOf="@+id/bt_1"        app:layout_constraintRight_toRightOf="parent"        app:layout_constraintTop_toTopOf="parent"/>

结合了以下两个属性来达到了需求的效果:

  • app:layout_constraintHorizontal_chainStyle="packed" //设置链样式
  • app:layout_constraintHorizontal_bias="0" // 设置水平偏好为0

接下来简单介绍下 chainbias 在后续的百分比布局中会讲到。

Chains(链)

Chains provide group-like behavior in a single axis (horizontally or vertically). The other axis can be constrained independently.

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

c_14

代码如下:

    <Button        android:id="@+id/bt_1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="A"        //默认样式        app:layout_constraintHorizontal_chainStyle="spread"        app:layout_constraintLeft_toLeftOf="parent"        app:layout_constraintRight_toLeftOf="@+id/bt_2" />    <Button        android:id="@+id/bt_2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="B"        app:layout_constraintLeft_toRightOf="@+id/bt_1"        app:layout_constraintRight_toRightOf="parent" />

那么链有哪些样式,以下图来诠释:

c_15

Weighted 样式下,宽或高的维度应设置为match_parent(0dp)

3、MATCH_CONSTRAINT dimensions(填充父窗体约束)

官方文档是这么介绍的:

When a dimension is set to MATCH_CONSTRAINT, the default behavior is to have the resulting size take all the available space. Several additional modifiers are available

在约束布局中宽高的维度 match_parent0dp 代替,默认生成的大小占所有的可用空间。那么有以下几个属性可以使用:

  • layout_constraintWidth_min and layout_constraintHeight_min //设置最小尺寸

  • layout_constraintWidth_max and layout_constraintHeight_max //设置最大尺寸

  • layout_constraintWidth_percent and layout_constraintHeight_percent //设置相对于父类的百分比

开发中有这样一个需求,位于父控件的中间且宽度为父控件的一半,那么我们可以这么去实现:

c_6

4、goneMargin(隐藏边距)

当约束目标的可见性为View.GONE时,还可以通过以下属性设置不同的边距值:

  • layout_goneMarginStart
  • layout_goneMarginEnd
  • layout_goneMarginLeft
  • layout_goneMarginTop
  • layout_goneMarginRight
  • layout_goneMarginBottom

如以下例子:

c_16

Margins and chains (in 1.1)Optimizer (in 1.1) 略。

5、约束之百分比布局

百分比布局大家肯定不会陌生,由于Android的碎片化非常严重,那么屏幕适配将是一件非常令人头疼的事情,百分比适配也就应运而生,约束布局同样也可以实现百分比的功能,并且更加强大,灵活。

经常我们会遇到这样的需求,个人主页要求顶部的背景图宽高 16:9 来适配,如下图:

c_7

约束布局的实现方式如下:

    <!-- "W,9:16" 同样的效果 -->    <ImageView        android:layout_width="0dp"        android:layout_height="0dp"        android:scaleType="centerCrop"        android:src="@mipmap/icon"        app:layout_constraintDimensionRatio="H,16:9"        app:layout_constraintLeft_toLeftOf="parent"        app:layout_constraintRight_toRightOf="parent"        app:layout_constraintTop_toTopOf="parent"/>

新增了如下属性:

app:layout_constraintDimensionRatio="H,16:9"

官网的介绍是这样的:

You can also define one dimension of a widget as a ratio of the other one. In order to do that, you need to have at least one constrained dimension be set to 0dp (i.e., MATCH_CONSTRAINT), and set the attribute layout_constraintDimensionRatio to a given ratio

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

然后需求变动,需要将宽度调整为屏幕的一半:

c_8

只需要新增 app:layout_constraintWidth_percent="0.5" 属性。

接着需要控件左对齐:

c_9

同时新增了app:layout_constraintHorizontal_bias="0"属性。

官网的介绍如下:

The default when encountering such opposite constraints is to center the widget; but you can tweak the positioning to favor one side over another using the bias attributes:

具有相反方向约束的控件,我们可以改变偏好值,来调整位置偏向某一边。有点类似LinearLayoutweight属性。

最后需要调整控件距离顶部的高度为父控件高度的20%:

c_10

这里用到了虚拟辅助类 Guideline ,同时1.1.0版本还添加了两个虚拟类BarrierGroup。它们是虚拟对象,并不会占用实际的空间,但可以帮助我们更好更精细地控制布局。综上的需求变化我们可以相对于父控件任意改变控件大小,控件的位置,从而能够更好的适配各大屏幕。

5、Guideline

Guideline 与 LinearLayout 类似可以设置水平或垂直方向,android:orientation="horizontal"android:orientation="vertical",水平方向高度为0,垂直方向宽度为0。Guideline 具有以下的三种定位方式:

  • 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"/>

效果图如下:

c_17

6、Barrier

Barrier,直译为障碍、屏障。在约束布局中,可以使用属性constraint_referenced_ids属性来引用多个带约束的组件,从而将它们看作一个整体,Barrier 的介入可以完成很多其他布局不能完成的功能,如下:

开发中有这样的一个需求,看下图:

c_11

姓名,联系方式位于 A 区域(随着文本的宽度变化 A 区域的宽度也随之变化),B 区域在 A 区域的右侧。使用传统的布局方式实现嵌套过多,布局不够优雅。那么我们一起来看看约束布局是怎么去实现的:

    <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"/>

barrierDirection 指定方向,constraint_referenced_ids引用的控件 id(多个id以逗号隔开)。

7、Group

Group用于控制多个控件的可见性。

e.g:

c_12

android:visibility="gone" 那么 A,B 控件都会隐藏。

三、总结

实战中的情形千变万化,需要大家掌握ConstraintLayout的基本属性,灵活应用。

相信我约束布局会让你爱不释手。崛起拭目以待。

(0)

相关推荐

  • 细细品读!深入浅出,官方文档看ConstraintLayout

    地址:http://www.jianshu.com/p/38ee0aa654a81写在前面之前品读了郭霖大神写的<Android新特性介绍,ConstraintLayout完全解析>(ht ...

  • 约束布局ConstraintLayout看这一篇就够了

    目录1.介绍2.为什么要用ConstraintLayout3.如何使用ConstraintLayout3.1 添加依赖3.2 相对定位3.3 角度定位3.4 边距3.5 居中和偏移3.6 尺寸约束3. ...

  • 鉴证一代超级游资崛起之路打板篇

    涨跌停板制度源于国外早期证券市场,是证券市场中为了防止交易价格的暴涨暴跌,抑制过度投机现象,对每只证券当天价格的涨跌幅度予以适当限制的一种交易制度. 有些交易所会为证券.商品.合约设定单日涨跌幅限制, ...

  • 鉴证一代超级游资崛起之路解套篇(图解)

    进入股市的投资者几乎都被套牢过,这是一个人人不愿提起,但又人人不能回避的问题.它是每个投资者迈向成熟的一道必经门槛.既然不能简单回避,就要勇敢地面对它,找出适合自己的解决方案. 解套的策略分为主动性解 ...

  • 鉴证一代超级游资崛起之路低吸篇:强势股涨停板的三种低吸模式与如何处理买卖点(图解)

    2019-04-19拾荒网打板 编辑:红星闪闪照我去炒股 高抛低吸是一种股票的波段操作,也是做股票的核心秘诀,最重要的是把握节奏,从最高点抛出,最低点吸收进来,从而做到高抛低吸. 低吸篇主要讲的是怎么 ...

  • 鉴证一代超级游资崛起之路情绪篇

    情绪,是对一系列主观认知经验的通称,是多种感觉.思想和行为综合产生的心理和生理状态.最普遍.通俗的情绪有喜.怒.哀.惊.恐.爱等,也有一些细腻微妙的情绪如嫉妒.惭愧.羞耻.自豪等.情绪常和心情.性格. ...

  • 鉴证一代超级游资崛起之路选股篇

    选股是每个炒股者都会经历的过程.可以通过资金选股系统了解资金流向,加强判断趋势:对个股评级,验证自己选择股票的优劣:善于利用工具可以更轻松地选股,同时也要多了解行业动态各方面的信息. (1).基本分析 ...

  • 实战篇|内劲的四十六种走法!传十路拳不如传一路劲!

    一.枣核劲.杏核劲­ 接手时,以手心贴扶对方手背,意想在彼此中间横置一大枣核(也可想像为一大橄榄核).内劲由劲源直达中指根,并由身前的枣核尖上爬绕过枣核肚,向对面的枣核尖延伸:同时亦从自己身前的枣核尖 ...

  • 四物汤实战篇!(加减脏腑病妇科病)

    一.四物汤加减脏腑病 1 血虚腹痛.微汗恶风.加官桂(七分).倍芍药. 2 嗽痰.加桑白皮.杏仁.麻黄.贝母( 各等分). 3 大便秘.加桃仁.大黄.麻仁.枳壳(减半余各等分). 4 血虚头眩.加天麻 ...

  • 分时图看盘技巧——实战篇1

    分时图看盘技巧——实战篇1

  • 秘传八字推命的十大法则(高级实战篇)

    八字推命的十大法则 八字命理的起源,和八字的起源不同.甲子历法中对年月日时计时,年.月.日.时均有干支两个字组成,简称八字.这种甲子历法在中国据考从伏羲氏就开始有创建,从中国古代的夏朝就已经开始使用. ...