ConstraintLayout 2.0新特性解析(一)--Flow流式布局

前言

之前解析过 ConstraintLayout 的解析,扁平化布局,随着ConstraintLayout 2.0的到来,官方又提供了几个新的特性,包括Flow流式布局Layer层共同背景、动画ImageFilterButton、ImageFilterView圆形图片MockView UI原型布局Space边距补偿MotionLayout动画,接下来,就让我们来探索下2.0新特性吧。
系列文章:
ConstraintLayout 2.0新特性解析(一)--Flow流式布局
ConstraintLayout 2.0新特性解析(二)-- Layer层布局,圆角视图
ConstraintLayout 2.0新特性解析(三)-- MockView UI原型布局,Space边距补偿,MotionLayout动画

Flow流式布局

流式布局的实现方式有很多种,比如RecycleView的StaggeredGridLayoutManager,或者自定义布局动态计算的方式等,无论哪种实现,都不如ConstraintLayout提供的Flow流式布局来的更灵活,更简单。

首先来布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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">

    <androidx.constraintlayout.helper.widget.Flow
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:flow_horizontalGap="10dp"
        app:flow_verticalGap="10dp"
        app:flow_wrapMode="none"
        app:constraint_referenced_ids="image1,image2,image3,image4,image5,image6,image7" />

    <ImageView
        android:id="@+id/image1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

    <ImageView
        android:id="@+id/image7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/ic_launcher" />

</androidx.constraintlayout.widget.ConstraintLayout>

直接这么写的话,展示样式是这样的:

图1

用属性:app:constraint_referenced_ids将7个ImageView约束起来,基本配置就ok了。很明显,最左边和左右边的两个TextView没有空间展示了。

app:flow_wrapMode

接下来,就要用的Flow的第一个也是最关键的特性app:flow_wrapMode。它是用来标定流式布局的样式,有三个值:

app:flow_wrapMode="none" 顾名思义,跟不设置一样,如图1一般。

app:flow_wrapMode="chain" 链式,如图2:

图2

chain开始已具备流式布局的基本特性:自动换行。
chain的特性是尾行不足一行时,平分剩余空间。

app:flow_wrapMode="aligned" 对齐展示,此对齐是绝对对齐,如果视图大小不一,也会上下对齐,如图3:

图3

行间距

app:flow_horizontalGap:横向行间距

app:flow_verticalGap:纵向行间距

如图123所示,加了10dp的间距后,看着跟网格布局一样。

orientation 水平or垂直流式

顾名思义,与LinearLayout的orientation属性一样,约束布局是水平方向的流式,还是垂直方向。
以上的图都是默认android:orientation="horizontal"的流式布局,而android:orientation="vertical"的样式如图4:

图4

对齐

除了app:flow_wrapMode="aligned"的绝对对齐之外,Flow还有几种对齐方式:

app:flow_verticalAlign:值有top,bottom,center,baseline。字面意思是约束所有
垂直位置,与horizontal的语义正好相反。orientation为horizontal,或者不配置时以下生效:

top就是顶部对齐,如图5:


image.png

bottom就是底不对齐,这里就不上图了。
center就是默认中心对齐样式。
baseline字面意思是与某个基准线对齐,具体没细探索。

app:flow_horizontalAlign:值有start,end,center。字面意思是约束所有水平位置。orientation为vertical,或者不配置时以下生效:

start就是起始位置对齐,从左到右布局样式就是左对齐,如图6:

图6

链约束

ConstraintLayout所有的链约束都是三个值:packedspreadspread_insidespread是默认值。链约束不懂的,去看我的另一篇ConstraintLayout文章吧,写的很详细。ConstraintLayout 的解析,扁平化布局

Flow相关链约束:

  • app:flow_horizontalStyle:约束所有水平链样式
  • app:flow_verticalStyle:约束所有垂直链样式
  • flow_firstHorizontalStyle:约束水平样式首行链样式
  • flow_firstVerticalStyle:约束垂直样式首行链样式
  • flow_lastHorizontalStyle:约束水平样式尾行链样式
  • flow_lastVerticalStyle:约束垂直样式尾行链样式

Bias

ConstraintLayout所有的bias取值范围都是0-1之间,默认0.5。不懂什么是bias,去看我的另一篇ConstraintLayout文章吧,写的很详细。ConstraintLayout 的解析,扁平化布局

Flow中的bias:

  • app:flow_horizontalBias
  • app:flow_verticalBias
  • app:flow_firstHorizontalBias
  • app:flow_firstVerticalBias
  • app:flow_lastHorizontalBias
  • app:flow_lastVerticalBias

同约束链匹配。

flow_maxElementsWrap

类似GridLayoutManager类似,可以配置每行或者每列最多是视图,例如配置:
app:flow_maxElementsWrap="3",如图7:

图7

结语

Flow的相关属性就这些,要想实现我们想要的需求,就需要对每一种属性都要有所了解。比如我们常见的流式布局需求如图8:


图8

单独使用以上哪种属性都实现不了,需要属性组合:

<androidx.constraintlayout.helper.widget.Flow
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:constraint_referenced_ids="image1,image2,image3,image4,image5,image6,image7,image8,image9,image10,image11"
        app:flow_horizontalGap="10dp"
        app:flow_verticalGap="10dp"
        app:flow_wrapMode="chain"
        app:flow_horizontalStyle="packed"
        app:flow_horizontalBias="0"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

app:flow_wrapMode="chain"
app:flow_horizontalStyle="packed"
app:flow_horizontalBias="0"
这三种组合就可以实现了。

下一篇:ConstraintLayout 2.0新特性解析(二)-- Layer层布局,圆角视图,敬请期待!

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

推荐阅读更多精彩内容