讀前思考
學習一門技術或者看一篇文章最好的方式就是帶著問題去學習,這樣才能在過程中有茅塞頓開、燈火闌珊的感覺,記憶也會更深刻。
- 有哪些常用的佈局?
- 每一種佈局有何特點與不同?
- 佈局上如何優化?
1. 約束佈局 ConstraintLayout
ConstraintLayout 是 Android Studio 2.2 中主要的新增功能之一,ConstraintLayout 使用約束的方式來指定各個控制元件的位置和關係的,它有點類似於 RelativeLayout,但遠比 RelativeLayout 要更強大,它可以有效地解決佈局巢狀過多的問題。
本文主要講解通過 xml 的編寫實現 ConstraintLayout,如果想要了解拖拽方式,可參考 Android新特性介紹,ConstraintLayout完全解析
1. 首先用 ConstraintLayout 實現置頂,高自適應,寬 match_parent
<TextView
android:id="@+id/tv_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:text="姓名"
android:textSize="20sp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
複製程式碼
實現效果圖
2. 實現一個控制元件在另一個控制元件下方
<TextView
android:id="@+id/tv_mobile"
android:layout_width="wrap_content"
android:layout_height="20dp"
android:text="手機號"
android:gravity="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_name"
/>
複製程式碼
實現效果圖
3. 實現控制元件上下左右居中顯示
<TextView
android:id="@+id/tv_age"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="年齡"
android:gravity="center"
android:textSize="30sp"
app:layout_constraintHorizontal_weight="3"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
複製程式碼
實現效果
- 通過佈局權重,實現百分比佈局
<TextView
android:id="@+id/tab0"
android:layout_width="0dp"
android:layout_height="50dp"
android:background="@color/colorPrimary"
android:gravity="center"
android:text="tab1"
android:textColor="@color/colorAccent"
android:textSize="20sp"
app:layout_constraintHorizontal_weight="2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/tab1" />
<TextView
android:id="@+id/tab1"
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center"
android:text="tab2"
android:textSize="20sp"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/tab0"
app:layout_constraintRight_toLeftOf="@+id/tab2"
app:layout_constraintTop_toTopOf="@+id/tab0" />
<TextView
android:id="@+id/tab2"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorAccent"
android:gravity="center"
android:text="tab3"
app:layout_constraintHorizontal_weight="1"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/tab1"
app:layout_constraintRight_toLeftOf="@id/tab3"
app:layout_constraintTop_toTopOf="@+id/tab0" />
<TextView
android:id="@+id/tab3"
android:layout_width="0dp"
android:layout_height="0dp"
android:gravity="center"
android:text="tab4"
android:textSize="20sp"
app:layout_constraintHorizontal_weight="3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/tab2"
app:layout_constraintRight_toLeftOf="@+id/tab4"
app:layout_constraintTop_toTopOf="@+id/tab0" />
<TextView
app:layout_constraintHorizontal_weight="1"
android:id="@+id/tab4"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/colorAccent"
android:gravity="center"
android:text="tab5"
android:textColor="@color/colorPrimary"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/tab3"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@+id/tab0" />
複製程式碼
實現效果圖
2. 線性佈局 LinearLayout
線性佈局是按照水平或垂直的順序將子元素(可以是控制元件或佈局)依次按照順序排列,每一個元素都位於前面一個元素之後。線性佈局分為兩種:水平方向和垂直方向的佈局。分別通過屬性 android:orientation="vertical" 和 android:orientation="horizontal" 來設定。 android:layout_weight 表示子元素佔據的空間大小的比例。
接下來我們來實現如下效果
具體程式碼實現
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/msg"
android:inputType="number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="">
</EditText>
</LinearLayout>
// 第二行為 mc m+ m- mr 四個Button構成一個水平佈局
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="mc" android:layout_weight="1">
</Button>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="m+" android:layout_weight="1">
</Button>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="m-" android:layout_weight="1">
</Button>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="mr" android:layout_weight="1">
</Button>
</LinearLayout>
</LinearLayout>
複製程式碼
3. 相對佈局 RelativeLayout
RelativeLayout 繼承於 android.widget.ViewGroup,其按照子元素之間的位置關係完成佈局的,作為 Android 系統五大布局中最靈活也是最常用的一種佈局方式,非常適合於一些比較複雜的介面設計。
接下來我們來實現如下效果
具體程式碼如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerInParent="true"
android:text="Button1"
/>
<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/btn1"
android:layout_toLeftOf="@id/btn1"
android:text="Button2"
/>
<Button
android:id="@+id/btn3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/btn1"
android:layout_toRightOf="@id/btn1"
android:text="Button3"
/>
<Button
android:id="@+id/btn4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/btn2"
android:layout_toLeftOf="@id/btn3"
android:layout_toRightOf="@id/btn2"
android:text="Button4"
/>
</RelativeLayout>
複製程式碼
由於我在專案中很少使用下面的佈局,就不過多介紹了
4. 表格佈局 TableLayout
表格佈局,適用於多行多列的佈局格式,每個 TableLayout 是由多個 TableRow 組成,一個 TableRow 就表示 TableLayout 中的每一行,這一行可以由多個子元素組成。實際上 TableLayout 和 TableRow 都是 LineLayout 線性佈局的子類。但是 TableRow 的引數 android:orientation 屬性值固定為 horizontal,且 android:layout_width=MATCH_PARENT,android:layout_height=WRAP_CONTENT。所以 TableRow 實際是一個橫向的線性佈局,且所以子元素寬度和高度一致。
5. 框架佈局 FrameLayout
FrameLayout 是最簡單的佈局了。所有放在佈局裡的控制元件,都按照層次堆疊在螢幕的左上角。後加進來的控制元件覆蓋前面的控制元件。 在 FrameLayout 佈局裡,定義任何空間的位置相關的屬性都毫無意義。控制元件自動的堆放在左上角,根本不聽你的控制。但是控制元件本身是可以控制自己內部的佈局的。
6. AbsoluteLayou 絕對佈局
絕對佈局中將所有的子元素通過設定 android:layout_x 和 android:layout_y 屬性,將子元素的座標位置固定下來,即座標 (android:layout_x, android:layout_y) ,layout_x 用來表示橫座標,layout_y 用來表示縱座標。螢幕左上角為座標 (0,0),橫向往右為正方,縱向往下為正方。實際應用中,這種佈局用的比較少,因為 Android 終端一般機型比較多,各自的螢幕大小。解析度等可能都不一樣,如果用絕對佈局,可能導致在有的終端上顯示不全等。
佈局優化
- 使用 include 標籤載入重複佈局
- 使用 merge 標籤減少佈局巢狀
- 使用 ViewStub 動態控制佈局顯示
由於篇幅問題就不對上述做具體例項,自己可以嘗試著實現。
文章已經讀到末尾了,不知道最初的幾個問題你都會了嗎?如果不會的話?可以再針對不會的問題進行精讀哦!答案都在文中,相信你肯定可以解決的!