八、android當中五大布局控制元件。其它常用佈局

weixin_33935777發表於2018-04-13

上課視訊:
五大布局:
連結:https://pan.baidu.com/s/13419y9fBL2DNzP-Kh-8bnQ 密碼:jj76
常用控制元件:
連結:https://pan.baidu.com/s/1CYw4lchKVPlw1di6mddfbA 密碼:dv7c

一、線性佈局

LinearLayout
裡面的控制元件按順序排列
水平
垂直

android:orientation="vertical"
horizontal

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent">

二、相對佈局

layout_toRightOf:在什麼控制元件的右邊
android:layout_centerInParent="true" :在父容器的中間
layout_alignParentRight:在父容器的右邊
layout_alignTop:跟同級控制元件的對齊方式

三、絕對佈局

四、針布局

五、表格佈局

通用控制元件屬性:

margin:
padding:

六、其它常用的控制元件

多選按鈕,單選按鈕、進度條、開關、日曆控制元件、選單控制元件、TabHost(不介紹,知道歷史有這麼一個東西)

2391256-51d6628c1a7a7dca.png
image.png

作業1:

相關文章