ConstraintLayout小記

ConstraintLayout是Android Studio 2.2中主要的新增的布局快骗,今天就來試著玩一下這個(gè)布局娜庇。
首先我們加入包

compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
示例1.png

如這樣的界面,一般我們會(huì)使用RelativeLayout來做方篮,現(xiàn)在我們來看下如何使用ConstraintLayout來做

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="net.zxl.constraintlayouttest.MainActivity">


    <ImageView
        android:id="@+id/img1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@mipmap/spider"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    <TextView
        android:text="@string/content"
        android:textColor="#000000"
        app:layout_constraintTop_toBottomOf="@+id/img1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/img2"
        android:id="@+id/tv1"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dp"
        android:layout_marginStart="16dp" />
    <ImageView
        android:id="@+id/img2"
        app:layout_constraintTop_toTopOf="@+id/tv1"
        app:layout_constraintLeft_toRightOf="@+id/tv1"
        app:layout_constraintBottom_toBottomOf="@+id/tv1"
        app:layout_constraintRight_toRightOf="parent"
        android:background="@mipmap/man"
        android:layout_width="140dp"
        android:layout_marginRight="12dp"
        android:layout_height="0dp"
        android:layout_marginEnd="12dp" />
</android.support.constraint.ConstraintLayout>

layout_constraintLeft_toLeftOf  本控件的左邊在誰的左邊
layout_constraintRight_toRightOf 本控件的右邊在誰的右邊
layout_constraintTop_toTopOf 本控件的頭部在誰的頭部
layout_constraintTop_toBottomOf 本控件的頭部在誰的底部
以此類推名秀,parent代表當(dāng)前的布局
示例2.png

在設(shè)置Button相互依靠以后如果使用的是寬度wrap_content并不會(huì)填充剩下的布局。

<Button
        android:id="@+id/button1"
        app:layout_constraintTop_toBottomOf="@+id/tv1"
        android:text="Button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    <Button
        android:id="@+id/button2"
        android:text="Button2"
        app:layout_constraintTop_toBottomOf="@+id/tv1"
        app:layout_constraintLeft_toRightOf="@+id/button1"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <Button
        android:id="@+id/button3"
        app:layout_constraintTop_toBottomOf="@+id/button1"
        android:text="Button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />
    <Button
        android:id="@+id/button4"
        android:text="Button4"
        app:layout_constraintTop_toBottomOf="@+id/button1"
        app:layout_constraintLeft_toRightOf="@+id/button1"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="0dp"
        android:layout_height="wrap_content" />

這里介紹一下 app:layout_constraintDimensionRatio="16:3" 是寬高比藕溅,但是我不太理解
https://developer.android.com/reference/android/support/constraint/ConstraintLayout.html#DimensionConstraints
大家可以互相交流匕得。、
layout_constraintHorizontal_bias
layout_constraintVertical_bias
即設(shè)置上下兩側(cè)間隙比例分別為90%與10%蜈垮。這個(gè)很好理解耗跛,我們之前說了,再?zèng)]有bias這個(gè)屬性的時(shí)候攒发,這兩側(cè)的拉力大小是一樣的调塌,但是你可以通過bias來控制哪一側(cè)的力要大一些

android.support.constraint.Guideline該類比較簡(jiǎn)單,主要用于輔助布局惠猿,即類似為輔助線羔砾,橫向的、縱向的。該布局是不會(huì)顯示到界面上的姜凄。
app:layout_constraintGuide_percent

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


    <android.support.constraint.Guideline
        android:id="@+id/guideline_w"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.8" />
    <TextView
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:background="#612"
        app:layout_constraintLeft_toRightOf="@id/guideline_w"
        app:layout_constraintTop_toBottomOf="@id/guideline_h" />

示例3

兩條虛線就是Guideline政溃。
好了,目前先記憶這些态秧,demo地址是
https://github.com/primerToforget/constraintLayoutTest
歡迎大家交流學(xué)習(xí)
本文參考
http://blog.csdn.net/lmj623565791/article/details/78011599?utm_source=tuicool&utm_medium=referral
http://blog.csdn.net/guolin_blog/article/details/53122387
上面鏈接中有使用拖拉去實(shí)現(xiàn)約束的具體步驟董虱,但還是建議學(xué)習(xí)使用代碼約束

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市申鱼,隨后出現(xiàn)的幾起案子愤诱,更是在濱河造成了極大的恐慌,老刑警劉巖捐友,帶你破解...
    沈念sama閱讀 211,042評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件淫半,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡匣砖,警方通過查閱死者的電腦和手機(jī)科吭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來猴鲫,“玉大人对人,你說我怎么就攤上這事”涓簦” “怎么了规伐?”我有些...
    開封第一講書人閱讀 156,674評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵蟹倾,是天一觀的道長(zhǎng)匣缘。 經(jīng)常有香客問我,道長(zhǎng)鲜棠,這世上最難降的妖魔是什么肌厨? 我笑而不...
    開封第一講書人閱讀 56,340評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮豁陆,結(jié)果婚禮上柑爸,老公的妹妹穿的比我還像新娘。我一直安慰自己盒音,他們只是感情好表鳍,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評(píng)論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著祥诽,像睡著了一般譬圣。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上雄坪,一...
    開封第一講書人閱讀 49,749評(píng)論 1 289
  • 那天厘熟,我揣著相機(jī)與錄音,去河邊找鬼。 笑死绳姨,一個(gè)胖子當(dāng)著我的面吹牛登澜,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播飘庄,決...
    沈念sama閱讀 38,902評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼脑蠕,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了跪削?” 一聲冷哼從身側(cè)響起空郊,我...
    開封第一講書人閱讀 37,662評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎切揭,沒想到半個(gè)月后狞甚,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,110評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡廓旬,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年哼审,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片孕豹。...
    茶點(diǎn)故事閱讀 38,577評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡涩盾,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出励背,到底是詐尸還是另有隱情春霍,我是刑警寧澤,帶...
    沈念sama閱讀 34,258評(píng)論 4 328
  • 正文 年R本政府宣布叶眉,位于F島的核電站址儒,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏衅疙。R本人自食惡果不足惜莲趣,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望饱溢。 院中可真熱鬧喧伞,春花似錦、人聲如沸绩郎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽肋杖。三九已至溉仑,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間兽愤,已是汗流浹背彼念。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評(píng)論 1 264
  • 我被黑心中介騙來泰國打工挪圾, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人逐沙。 一個(gè)月前我還...
    沈念sama閱讀 46,271評(píng)論 2 360
  • 正文 我出身青樓哲思,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親吩案。 傳聞我的和親對(duì)象是個(gè)殘疾皇子棚赔,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容