走马观花-ConstraintLayout

ConstraintLayout使用具体参考:

偏移量

  • 水平偏移:layout_constraintHorizontal_bias
  • 垂直偏移:layout_constraintVertical_bias

将TextView置底居中显示:

<TextView
        android:id="@+id/tv6"
        style="@style/TEXT"
        android:text="下方居中"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

效果:

image

PS: layout_constraintHorizontal_bias有效果的前提是有左右相对定位同时存在,即layout_constraintStart_toXxxOflayout_constraintEnd_toXxxOf,或者layout_constraintLeft_toXxxOflayout_constraintRight_toXxxOf成对出现。两对各使用其中之一是不奏效的。例如:

layout_constraintRight_toLeftOf替代layout_constraintEnd_toEndOf:

 <TextView
        android:id="@+id/tv6"
        style="@style/TEXT"
        android:text="下方居中"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintRight_toLeftOf="parent"/>

image

layout_constraintHorizontal_bias取值0~1,0表示TextView的左侧和其layout_constraintStart_toXxxOf 对应的左侧重合,0表示TextView的右侧和其layout_constraintEnd_toXxxOf 对应的右侧重合,0.5表示显示在layout_constraintStart_toXxxOflayout_constraintEnd_toXxxOf 的中间。例如:

    <TextView
        android:id="@+id/tv6"
        style="@style/TEXT"
        android:background="@android:color/darker_gray"
        android:text="下方居中"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintStart_toEndOf="parent"/>

    <TextView
        android:id="@+id/tv7"
        style="@style/TEXT"
        android:background="@android:color/background_dark"
        android:text="BIAS"
        android:visibility="visible"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintHorizontal_bias="1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@id/tv6"/>

效果图:

image

可见:layout_constraintHorizontal_bias = 1,有根据属性 layout_constraintRight_toLeftOf="@id/tv6"BIAS 这个 TextView 的右侧刚好和 tv6 的左侧重合。

假设将layout_constraintRight_toLeftOf="@id/tv6" 改为 layout_constraintRight_toRightOf="@id/tv6",那么即 BIAS 这个 TextView 的右侧就会和 tv6 的右侧重合:

image

尺寸

0dp 配合 layout_constraintEnd_toEndOf="parent"layout_constraintStart_toStartOf="parent"这一对或者layout_constraintLeft_toLeftOf="parent"layout_constraintRight_toRightOf="parent"这一对使用,达到match_parent 的效果。

layout_widthlayout_height 有一方为 0dp时,可以使用layout_constraintDimensionRatio 来达到宽度成一定比例显示的效果:例如,

<TextView
        android:id="@+id/tv_tv"
        style="@style/TEXT"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@android:color/darker_gray"
        android:text="上方居中"
        app:layout_constraintDimensionRatio="H,1:2"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>

效果如下:

image

其中,假设写成 app:layout_constraintDimensionRatio="1:2",表示宽高比例为 1:2 ,而且基本单位以宽高二者最小的长度为准。

假设写成 app:layout_constraintDimensionRatio="H,1:2" ,即本例,宽高比为 2:1


    <TextView
        android:id="@+id/tv8"
        style="@style/TEXT"
        android:background="@android:color/darker_gray"
        app:layout_constraintHorizontal_chainStyle="spread"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@id/tv9"/>

    <TextView
        android:id="@+id/tv9"
        style="@style/TEXT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/background_dark"
        app:layout_constraintLeft_toRightOf="@id/tv8"
        app:layout_constraintRight_toLeftOf="@id/tva"/>

    <TextView
        android:id="@+id/tva"
        style="@style/TEXT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/darker_gray"
        app:layout_constraintLeft_toRightOf="@id/tv9"
        app:layout_constraintRight_toRightOf="parent"/>

3TextView 构成一条链,如下:

image

例外,ConstraintLayout 还有属性可以对链的样式进行设置,分别为layout_constraintHorizontal_chainStylelayout_constraintVertical_chainStyle。测试之后发现,只有将 layout_constraintXxx_chainStyle 属性设置在链的第一个 View 上才有效果。例如本例中只有将 layout_constraintHorizontal_chainStyle 设置在 idtv8TextView 上才有效果。layout_constraintXxx_chainStyle3 个取值,分别为spread , spread_insidepacked 。效果图如下:

app:layout_constraintHorizontal_chainStyle="spread"
image
app:layout_constraintHorizontal_chainStyle="spread_inside"
image
app:layout_constraintHorizontal_chainStyle="packed"
image

权重

当宽度或高度为 0dp 时,可以使用 layout_constraintHorizontal_weightlayout_constraintVertical_weight 进行比重划分。本例使用layout_constraintHorizontal_weight:

 <TextView
        android:id="@+id/tv8"
        style="@style/TEXT"
        android:layout_width="0dp"
        android:background="@android:color/darker_gray"
        app:layout_constraintHorizontal_chainStyle="spread"
        app:layout_constraintHorizontal_weight="3"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@id/tv9"/>

    <TextView
        android:id="@+id/tv9"
        style="@style/TEXT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/background_dark"
        app:layout_constraintHorizontal_weight="2"
        app:layout_constraintLeft_toRightOf="@id/tv8"
        app:layout_constraintRight_toLeftOf="@id/tva"/>

    <TextView
        android:id="@+id/tva"
        style="@style/TEXT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/darker_gray"
        app:layout_constraintHorizontal_weight="2"
        app:layout_constraintLeft_toRightOf="@id/tv9"
        app:layout_constraintRight_toRightOf="parent"/>

效果图如下:

image

可见,layout_constraintXxx_weight 只有在对应属性为 0dp 时才会起作用。例外,layout_constraintXxx_chainStyle 在这种场景下没有了作用

Barrier

Barrier(屏障引用多个控件作为输入,基于这些控件的最极端做一个虚拟的屏障。

例如,假设两个按钮 AB 的宽度是不固定的,想要在这两个按钮的右侧添加一个 View ,这个时候需要知道 AB 哪个的右侧更靠近右边。Barrier 就可以达到这个目的。

[图片上传失败...(image-2a9a25-1547267639363)]

 <android.support.constraint.Barrier
              android:id="@+id/barrier"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              app:barrierDirection="end"
              app:constraint_referenced_ids="button1,button2" />

[图片上传失败...(image-61a7d7-1547267639363)]

然后就可以根据 Barrier 来确定新添加的 View 的位置。

constraint_referenced_ids 表示需要对其基准的所有控件,引用多个控件使用 , 隔开。
barrierDirection 的取值有:

  • BOTTOM
  • TOP
  • LEFT
  • RIGHT
  • START
  • END

Group

此类控制一组引用的窗口小部件的可见性。 通过添加到逗号分隔的id列表来引用窗口小部件。

<android.support.constraint.Group
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"
        app:constraint_referenced_ids="tva,tv9"/>

两个 TextView 被隐藏,效果如下:

image

Placeholder

占位符提供可以定位现有对象的虚拟对象。

当在占位符上设置另一个视图的 id( 使用 setContent()) ,占位符有效地成为内容视图。 如果内容视图存在于屏幕上,则将其视为从其原始位置 gone

 <android.support.constraint.Placeholder
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:content="@+id/tv8"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"/>

    <TextView
        android:id="@+id/tv8"
        style="@style/TEXT"
        android:text="Placeholder"
        android:background="@android:color/darker_gray"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>

效果图:

image

Guideline

ConstraintLayout 的布局辅助对象。 辅助对象不会显示在设备上它们标记为View.GONE),仅用于布局目的。 它们仅在 ConstraintLayout 中工作。

可以通过三种不同的方式定位Guideline

  • 指定布局左侧或顶部的固定距离(layout_constraintGuide_begin)
  • 指定布局右侧或底部的固定距离(layout_constraintGuide_end)
  • 指定布局的宽度或高度的百分比(layout_constraintGuide_percent)

例:在距离左上角 x = 30%,y=50% 的地方显示一个 TextView

<android.support.constraint.Guideline
        android:id="@+id/guideline_0.3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.3"/>

    <android.support.constraint.Guideline
        android:id="@+id/guideline_0.2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.5"/>

    <TextView
        android:id="@+id/tvb"
        style="@style/TEXT"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/darker_gray"
        app:layout_constraintLeft_toRightOf="@+id/guideline_0.3"
        app:layout_constraintTop_toBottomOf="@+id/guideline_0.2"/>

效果如下:

image

guideline_0.3 的方向为 vertical,表示这是一根竖直的辅助线。那对于 TextView 来说,可用来确定自身的水平方向的起点。app:layout_constraintGuide_percent="0.3" 表示guideline_0.3 距离 parent 左侧的距离为整个 ConstraintLayout30%;同理,guideline_0.2 距离 parent 顶部的距离为 50%

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念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

推荐阅读更多精彩内容