我们能用ConstraintLayout 做些什么?

ConstraintLayout,约束布局

A ConstraintLayout is a ViewGroup which allows you to position and size widgets in a flexible way.
这是Google官方API的介绍

ConstraintLayout是Android Studio 2.2中主要的新增功能之一,也是Google在2016年的I/O大会上重点宣传的一个功能。在Android Studio 2.3开始,IDE默认生成的Activity布局都是以ConstraintLayout做为根布局。

ConstraintLayout提供了可视化的方式来编写界面,但是在实际使用中,因为我们的布局复杂,很难用可视化操作去精准布局,所以我们还是倾向于手动去写xml。

ConstraintLayout的优点

1.对比RelativeLayout

实际开发中,我们最常用的layout是RelativeLayout,ConstraintLayout某种意义上可以认为是RelativeLayout的升级版。 举一个简单的例子

constraint01.png

上图中一个button在RelativeLayout的右下方,当我们希望这个RelativeLayout的高度自适应的时候,我们去设置RelativeLayout的layout heiht为wrap content,我们会看到如下图结果,显然不是我们需要的。

constraint02.png

但是如果用ConstraintLayout,可以轻松实现这个需求

constraint03.png

2.扁平化

我们都知道,我们在实现界面布局的时候,强调尽量少的嵌套,因为嵌套多会导致需要更多的时间去绘制view。为了减少嵌套,我们经常会使用RelativeLayout代替LinearLayout,但是RelativeLayout会对子View做两次measure。

相关view的绘制流程以及RelativeLayout和LinearLayout的性能对比,贴一个文章Android中RelativeLayout和LinearLayout性能分析

我们看一个例子可以清晰看到ConstraintLayout减少嵌套


constraint04.png

如上图的UI如果我们用原先的RelativeLayout实现,层次图如下


constraint06.png

但是如果我们用ConstraintLayout实现,层次图会变的扁平化如下图
constraint07.png

另外关于ConstraintLayout的性能分析,可以参考Google的文章解析ConstraintLayout的性能优势

3.应对需求多变性

还是刚才那个例子,如果ui需求修改成如下图

constraint05.png

如果用RelativeLayout我们可能需要很大程度上去修改原来的布局结构,但是用ConstraintLayout,我们只需要把不需要的那个Textview置为GONE就能达到UI效果。
当然,不是所有需求变动我们都能很方便去实现。
贴一下这个UI的ConstraintLayout的实现代码

<?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:fresco="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="64.5dp"
    android:background="@drawable/item_background_selector_white">

    <tv.chushou.zues.widget.fresco.FrescoThumbnailView
        android:id="@+id/iv_image"
        android:layout_width="@dimen/subc_user_thumb_width"
        android:layout_height="@dimen/subc_user_thumb_width"
        android:layout_marginLeft="14dp"
        android:layout_marginStart="14dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        fresco:actualImageScaleType="centerCrop"
        fresco:placeholderImageScaleType="fitXY"
        fresco:roundAsCircle="true"
        fresco:roundingBorderColor="@color/transparent_5_black"
        fresco:roundingBorderWidth="0.5dp" />

    <ImageView
        android:id="@+id/iv_sex"
        android:layout_width="14dp"
        android:layout_height="14dp"
        android:src="@drawable/user_female_big"
        app:layout_constraintBottom_toBottomOf="@+id/iv_image"
        app:layout_constraintRight_toRightOf="@+id/iv_image" />

    <com.kascend.chushou.widget.ImgRightTextView
        android:id="@+id/img_text_name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="2.5dp"
        android:layout_marginLeft="14dp"
        android:layout_marginStart="14dp"
        app:layout_constraintBottom_toTopOf="@+id/tv_bottom"
        app:layout_constraintEnd_toStartOf="@+id/tv_game"
        app:layout_constraintLeft_toRightOf="@+id/iv_image"
        app:layout_constraintRight_toLeftOf="@+id/tv_game"
        app:layout_constraintStart_toEndOf="@+id/iv_image"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_chainStyle="packed"
        app:layout_goneMarginRight="105dp"
        app:magin_left="5dp" />

    <TextView
        android:id="@+id/tv_game"
        android:layout_width="65dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="2.5dp"
        android:layout_marginEnd="10dp"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="10dp"
        android:ellipsize="end"
        android:gravity="right"
        android:includeFontPadding="false"
        android:singleLine="true"
        android:textColor="@color/download_content_color"
        android:textSize="12.5sp"
        app:layout_constraintBottom_toTopOf="@+id/tv_state"
        app:layout_constraintEnd_toStartOf="@+id/iv_detail"
        app:layout_constraintLeft_toRightOf="@+id/img_text_name"
        app:layout_constraintRight_toLeftOf="@+id/iv_detail"
        app:layout_constraintStart_toEndOf="@+id/img_text_name"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_chainStyle="packed" />

    <TextView
        android:id="@+id/tv_bottom"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="14dp"
        android:layout_marginStart="14dp"
        android:layout_marginTop="2.5dp"
        android:ellipsize="end"
        android:includeFontPadding="false"
        android:singleLine="true"
        android:textColor="@color/kas_littlegray"
        android:textSize="@dimen/fontsize_12sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/tv_state"
        app:layout_constraintLeft_toRightOf="@+id/iv_image"
        app:layout_constraintRight_toLeftOf="@+id/tv_state"
        app:layout_constraintStart_toEndOf="@+id/iv_image"
        app:layout_constraintTop_toBottomOf="@+id/img_text_name" />

    <TextView
        android:id="@+id/tv_state"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="10dp"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="10dp"
        android:layout_marginStart="30dp"
        android:layout_marginTop="2.5dp"
        android:ellipsize="end"
        android:gravity="top|right"
        android:includeFontPadding="false"
        android:singleLine="true"
        android:textColor="@color/friend_state"
        android:textSize="@dimen/fontsize_9sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/iv_detail"
        app:layout_constraintLeft_toRightOf="@+id/tv_bottom"
        app:layout_constraintRight_toLeftOf="@+id/iv_detail"
        app:layout_constraintStart_toEndOf="@+id/tv_bottom"
        app:layout_constraintTop_toBottomOf="@+id/tv_game" />

    <ImageView
        android:id="@+id/iv_detail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="14dp"
        android:layout_marginRight="14dp"
        android:src="@drawable/bg_in_playlive"
        android:visibility="visible"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <View
        android:layout_width="0dp"
        android:layout_height="1px"
        android:layout_marginLeft="14dp"
        android:layout_marginStart="14dp"
        android:background="@color/c_page_diliver_color"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toRightOf="@+id/iv_image"
        app:layout_constraintStart_toEndOf="@+id/iv_image" />

</android.support.constraint.ConstraintLayout>

使用ConstraintLayout

几个要点

  • Chains
  • Guidelines
  • ConstraintSet

更新

Constraint Layout 1.1.x带来了哪些新东西?

关于坑

ConstraintLayout嵌套会出现显示不全的问题

其他暂时还未碰到

关于引用

文中贴了链接的文章都有参考,致谢。

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

推荐阅读更多精彩内容