Android移動應(yīng)用開發(fā)指南之六種布局詳解_第1頁
Android移動應(yīng)用開發(fā)指南之六種布局詳解_第2頁
Android移動應(yīng)用開發(fā)指南之六種布局詳解_第3頁
Android移動應(yīng)用開發(fā)指南之六種布局詳解_第4頁
Android移動應(yīng)用開發(fā)指南之六種布局詳解_第5頁
已閱讀5頁,還剩1頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)

文檔簡介

第Android移動應(yīng)用開發(fā)指南之六種布局詳解layout_weight設(shè)置權(quán)重(感覺和彈性盒子差不多)

RelativeLayout

顧名思義,相對元素布局

xmlversion="1.0"encoding="utf-8"

RelativeLayoutxmlns:android="/apk/res/android"

android:layout_height="match_parent"

android:layout_width="match_parent"

android:padding="10dp"

RelativeLayout

android:id="@+id/rl1"

android:layout_width="100dp"

android:layout_height="100dp"

android:background="#ff0000"

android:layout_centerInParent="true"

RelativeLayout

android:layout_margin="0dp"

android:layout_width="100dp"

android:layout_height="100dp"

android:background="#00ff00"

android:layout_toLeftOf="@+id/rl1"

/RelativeLayout

FrameLayout

xmlversion="1.0"encoding="utf-8"

FrameLayout

android:layout_width="match_parent"

android:layout_height="match_parent"

xmlns:android="/apk/res/android"

FrameLayout

android:layout_width="400dp"

android:layout_height="400dp"

android:background="#ff0000"

FrameLayout

android:layout_width="300dp"

android:layout_height="300dp"

android:background="#ffff00"

android:foreground="@drawable/a"

FrameLayout

android:layout_width="200dp"

android:layout_height="200dp"

android:background="#00ff00"/

/FrameLayout

簡單來說,就是可以疊一起的布局

TableLayout

xmlversion="1.0"encoding="utf-8"

TableLayout

xmlns:android="/apk/res/android"

android:collapseColumns=""

android:layout_width="match_parent"

android:layout_height="match_parent"

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第1個"

TableRow

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第一個"

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第二個"

/TableRow

TableRow

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第一個"

/TableRow

/TableLayout

可以看成類似excel的表格一樣的布局

通常結(jié)合TableRow一起使用

GridLayout

網(wǎng)格布局

xmlversion="1.0"encoding="utf-8"

GridLayout

xmlns:android="/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal"

android:columnCount="3"

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_row="0"

android:layout_column="1"

android:text="第一個"

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第二個"

Button

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="第三個"

android:layout_columnSpan="3"

/GridLayout

可以看成TableLayout升級版?

ConstraintLayout

約束布局

這個應(yīng)該是最強(qiáng)的布局了

創(chuàng)建布局默認(rèn)的就是這個了。

打開design模式,然后隨便拖幾個按鈕進(jìn)去

點擊魔術(shù)棒建立約束。

ok完成布局了。

代碼也自動生成好了:

xmlversion="1.0"encoding="utf-8"

androidx.constraintlayout.widget.ConstraintLayoutxmlns

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論