ConstraintLayout(约束布局)的使用

今天跟大家分享一下ConstraintLayout布局的使用,也算是为自己做的笔记吧。

ConstraintLayout是2016年Google的I/O大会上重点宣传的一个新功能。(已经出了这么久了,最近才开始使用这个布局,为什么要使用这个布局呢?)它有一个明显的优点:就是可以有效的解决布局嵌套过多的问题,使用一层布局就可以解决复杂的嵌套布局(此处在推荐一个控件Guideline,二者配合使用效果更佳)。ConstraintLayout有点类似于RelativeLayout,但是比RelativeLayout更强大。下面看一下基本使用:

ConstraintLayout的基本属性

主要是通过四个边来确定视图的大小和位置的,所以只要对4个边做约束即可:

app:layout_constraintStart_toStartOf=""

app:layout_constraintStart_toEndOf=""

app:layout_constraintTop_toTopOf=""

app:layout_constraintTop_toBottomOf=""

app:layout_constraintEnd_toStartOf=""

app:layout_constraintEnd_toEndOf=""

app:layout_constraintBottom_toTopOf=""

app:layout_constraintBottom_toBottomOf=""

下面简单做一个登陆页面,如下:


图1


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

    android:padding="50.0dip">

    <EditText

        android:id="@+id/username"

        android:layout_width="0.0dip"

        android:layout_height="50.0dip"

        android:layout_marginTop="150.0dip"

        android:hint="请输入账号"

        app:layout_constraintEnd_toEndOf="parent"

        app:layout_constraintStart_toStartOf="parent"

        app:layout_constraintTop_toTopOf="parent" />

    <EditText

        android:id="@+id/password"

        android:layout_width="0.0dip"

        android:layout_height="50.0dip"

        android:layout_marginTop="25.0dip"

        android:hint="请输入密码"

        app:layout_constraintEnd_toEndOf="@+id/username"

        app:layout_constraintStart_toStartOf="@+id/username"

        app:layout_constraintTop_toBottomOf="@+id/username" />

    <Button

        android:layout_width="0.0dip"

        android:layout_height="wrap_content"

        android:layout_marginTop="30.0dip"

        android:text="登录"

        app:layout_constraintEnd_toEndOf="@+id/password"

        app:layout_constraintStart_toStartOf="@+id/password"

        app:layout_constraintTop_toBottomOf="@+id/password" />

</android.support.constraint.ConstraintLayout>

控件居中(※)

想让登录按钮居中,只要把Button的android:layout_width=“wrap_content“即可,如下图


图2

   <Button

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_marginTop="30.0dip"

    android:text="登录"

    app:layout_constraintEnd_toEndOf="@+id/password"

    app:layout_constraintStart_toStartOf="@+id/password"

    app:layout_constraintTop_toBottomOf="@+id/password" />

链式layout_constraintHorizontal_chainStyle方式

图3

    <TextView

    android:id="@+id/textView2"

    android:layout_width="wrap_content"

    android:layout_height="50dp"

    android:layout_marginStart="8dp"

    android:layout_marginBottom="8dp"

    android:background="@color/colorAccent"

    android:gravity="center"

    android:text="TextView"

    app:layout_constraintHorizontal_chainStyle="spread"

    app:layout_constraintBottom_toBottomOf="parent"

    app:layout_constraintEnd_toStartOf="@+id/textView3"

    app:layout_constraintStart_toStartOf="parent" />

    <TextView

    android:id="@+id/textView3"

    android:layout_width="wrap_content"

    android:layout_height="50dp"

    android:layout_marginStart="8dp"

    android:background="@color/colorPrimary"

    android:gravity="center"

    android:text="TextView"

    app:layout_constraintBottom_toBottomOf="@+id/textView2"

    app:layout_constraintEnd_toStartOf="@+id/textView4"

    app:layout_constraintStart_toEndOf="@+id/textView2"

    app:layout_constraintTop_toTopOf="@+id/textView2" />

    <TextView

    android:id="@+id/textView4"

    android:layout_width="wrap_content"

    android:layout_height="50dp"

    android:layout_marginStart="8dp"

    android:background="@color/design_default_color_primary_dark"

    android:text="TextView"

    android:gravity="center"

    app:layout_constraintEnd_toEndOf="parent"

    app:layout_constraintStart_toEndOf="@+id/textView3"

    app:layout_constraintTop_toTopOf="@+id/textView3" />

添加chain属性后几种情况,一下是官方给出的图片

图4

layout_constraintDimensionRatio使用

图5

    <TextView

    android:layout_width="0.0dip"

    android:layout_height="0.0dip"

    android:background="@color/design_default_color_primary"

    app:layout_constraintDimensionRatio="3:1"

    app:layout_constraintEnd_toEndOf="parent"

    app:layout_constraintStart_toStartOf="parent"

    app:layout_constraintTop_toTopOf="parent" />

以上就是ConstraintLayout的基本使用,也是主要的使用,其他的属性用的比较少,就不跟大家一一分享了。

另:上述提到的Guideline控件

    <android.support.constraint.Guideline

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:orientation="horizontal"

    app:layout_constraintGuide_percent="0.5" />

首先必须设置横竖屏,android:orientation="horizontal",其次设置占据屏幕的百分比app:layout_constraintGuide_percent="0.5",在复杂布局中与ConstraintLayout配合非常适用,推荐大家使用


以上就是最近使用中遇到的ConstraintLayout使用的相关介绍,如有问题,请大家多多指教,互相学习!

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