Android实战:ConstraintLayout 和 iOS AutoLayout的关系

截屏2020-03-03上午12.02.29.png

起点:坐标点的约束:从iOS的坐标体系说起

iOS坐标体系中任何View都必须有一个frame才能显示,frame=(x,y,width,height),可以这么理解:(x,y)决定了view的坐标点,(width,height)决定了view的尺寸。

给红色View添加约束:

  • 相对于父布局左边(leading)对齐,间距50 (x = 父布局leading+50)
  • 相对于父布局上部(top)对齐,间距50 (y = 父布局top+50)
  • 宽度width = 100, 高度 height = 100


    截屏2020-03-03上午9.50.25.png

    截屏2020-03-03上午9.50.39.png

ConstraintLayout正是完美复刻这一坐标体系和view显示方式

我们创建一个TextView,设置宽高为100dp,代码如下

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/mTvRed"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:text="中间"
        android:textColor="#fff"
        android:textSize="20dp" />
</androidx.constraintlayout.widget.ConstraintLayout>

但是,编译器报错了
截屏2020-03-03上午12.33.22.png

意思就是缺少水平约束和垂直约束,这就像frame,view只有宽高,没有xy就找不到view的坐标点。
于是,来给TextView设置x,y吧

      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent" 

这2句的意思是view的左边与父布局的左边对齐(x=0),顶部与父布局的顶部对齐(y=0),这样就可以确定TextView的坐标点(x=0,y=0)了,


截屏2020-03-03上午12.38.25.png

这时的代码就相当于frame:(x=0,y=0,width=100,height=100),如果让(x,y)=(100,100)呢?

 android:layout_marginStart="100dp"
 android:layout_marginTop="100dp"
截屏2020-03-03上午12.41.43.png

总结:
1.约束布局的坐标体系类似于iOS,其中view的显示也与iOS的frame类似,都需要确定坐标点(x,y)和尺寸(width,height)才能显示view
2.layout_constraintXXX_toXXXOf 语句可以确定view的坐标点:

layout_constraintRight_toLeftOf                 :   当前view的右边与目标view的左边对齐
layout_constraintRight_toRightOf                :   当前view的右边与目标view的右边对齐
layout_constraintTop_toTopOf
layout_constraintTop_toBottomOf
layout_constraintBottom_toTopOf
layout_constraintBottom_toBottomOf
layout_constraintBaseline_toBaselineOf

练一练:在红色TextView的右(10dp)下(10dp)角创建一个宽高为100dp的绿色TextView(关键点:如何确定绿色Tv的坐标点)

iOS 实现:


截屏2020-03-03上午10.16.12.png

1.确定绿色View的宽高为100,
2.确定绿色View的坐标点为:top与红色View的bottom对齐间距50,leading(左边)与红色View的trailing(右边)对齐间距50

左下角.top = iOS中间.bottom + 50
左下角.leading = iOS中间.trailing + 50 
截屏2020-03-03上午10.13.05.png

Android实现: 同样也是确定绿色View的坐标点


截屏2020-03-03上午12.59.44.png
<TextView
        android:id="@+id/mTvGreen"
        android:layout_width="100dp"
        android:layout_height="100dp"
        
        android:background="@color/colorPrimary"
        android:gravity="center"
        android:text="左下角"
        android:textColor="#fff"
        android:textSize="20dp"
        app:layout_constraintStart_toEndOf="@+id/textView5"   //mTvGreen的start与mTvRed的end对齐
        app:layout_constraintTop_toBottomOf="@+id/textView5" //mTvGreen的top与mTvRed的bottom对齐
        android:layout_marginStart="10dp"
        android:layout_marginTop="10dp"/>

后四行代码确定了绿色View的坐标点:

  • 绿色View的start(左边)与红色View的end(右边)对齐,间距为10dp,(绿色View的start = 红色View的end+10dp),
  • 绿色View的top与红色View的bottom对齐,间距为10dp,(绿色View的top = 红色View的bottom+10dp)

案例:设置View2相对于View1居中

iOS:
截屏2020-03-03下午12.35.23.png

Center Vertically 即刻解决
Android:
app:layout_constraintBaseline_toBaselineOf ?是不行滴。
这样写就ok

 app:layout_constraintBottom_toBottomOf="@+id/textView5"
        app:layout_constraintStart_toEndOf="@+id/textView5"
        app:layout_constraintTop_toTopOf="@+id/textView5"
截屏2020-03-03下午12.37.26.png

2.尺寸的约束

Android
1.固定尺寸
2.wrap_content:根据内容伸缩

  1. MATCH_CONSTRAINT 相当于match_parent,它的值为0dp


    截屏2020-03-03上午10.59.47.png
 <TextView
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:background="#ffa"
        android:text="Macth_Parent(0dp)"
        android:textAppearance="@style/TextAppearance.AppCompat.Large"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <TextView
        android:id="@+id/textView7"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:background="#03A9F4"
        android:text="Wrap_Content"
        android:textAppearance="@style/TextAppearance.AppCompat.Large"
        app:layout_constraintBottom_toTopOf="@+id/textView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <TextView
        android:id="@+id/textView8"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:background="#FFEB3B"
        android:text="固定长度"
        android:textAppearance="@style/TextAppearance.AppCompat.Large"
        app:layout_constraintBottom_toTopOf="@+id/textView7"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

iOS :没有Warp_content,其他一样

3.比例:约束布局的最大特点就是不用把宽高写死,根据尺寸比例达到各种机型的屏幕适配。

其中iOS和Android的不同在于:
iOS可以相对于其他View进行比例设置,Android只能相对于父布局进行比例设置
Android:
1.1View的宽度与父布局宽度的比例

android:layout_width="0dp"
app:layout_constraintWidth_default="percent" //设置宽为百分比
app:layout_constraintWidth_percent="0.5"

1.2View的高度与父布局高度的比例

android: layout_height ="0dp"
app:layout_constraintHeight_default="percent" //设置高为百分比
app:layout_constraintHeight_percent="0.5"

注意:View没有与其他View进行宽高比例的设置方法,只有与父布局的
2.View自己的宽高比例

app:layout_constraintDimensionRatio="2:1"

iOS:脱线即刻

案例:View的宽高比例1:1,View与父布局高度比例1:5

步骤:

1.设置View的宽高比例
截屏2020-03-03上午11.51.09.png
01.gif

2.设置View与父布局高度比例


02.gif
截屏2020-03-03上午11.34.24.png

Android实现:
1.设置View的高度与父控件高度比例为1:5

        android:layout_height="0dp"
        app:layout_constraintHeight_percent="0.2"

2.设置View的宽高比例为1:1

        android:layout_height="0dp"
        app:layout_constraintDimensionRatio="1:1"
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textView5"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintDimensionRatio="1:1"
        app:layout_constraintHeight_percent="0.2"
        android:background="@color/colorAccent"
        android:gravity="center"
        android:text="中间"
        android:textColor="#fff"
        android:textSize="20dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

3.Android特有
3.1辅助线Guideline:
3.2位置偏向 :把他理解成margin的比例版就ok,margin只能设置数值

layout_constraintHorizontal_bias  //水平偏向
layout_constraintVertical_bias  //竖直偏向


<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:background="@color/colorAccent"
        android:gravity="center"
        android:textColor="#fff"
        android:textSize="20dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="左边偏向30%"
        app:layout_constraintHorizontal_bias="0.3"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />
</androidx.constraintlayout.widget.ConstraintLayout>
截屏2020-03-03下午12.31.05.png

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

参考:
Android新特性介绍,ConstraintLayout完全解析
实战篇ConstraintLayout的崛起之路
带你了解Android约束布局ConstraintLayout
ConstraintLayout 完全解析 快来优化你的布局吧

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

推荐阅读更多精彩内容