ConstraintLayout是Android Studio 2.2中主要的新增的布局快骗,今天就來試著玩一下這個(gè)布局娜庇。
首先我們加入包
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
如這樣的界面,一般我們會(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)前的布局
在設(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" />
兩條虛線就是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í)使用代碼約束