1. 程式人生 > 其它 >十、LinearLayout 佈局

十、LinearLayout 佈局

常用屬性

1. orientation佈局中元件的排列方式

2. gravity控制組件所包含的子元素的對齊方式,可多個組合

3. layout_gravity控制該元件在父容器裡的對其方式

4. background 為該元件設定一個背景圖片,或者是直接用顏色覆蓋

5. divider分割線

6. showDividers設定分割線所在的位置, none(), beginning(開始), end(結束), middle(每兩個元件間)

7. dividerPadding 設定分割線的 padding

8. 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:orientation="vertical">

    <LinearLayout
        android:background="#ffff0000"
        android:layout_width="100dp"
        android:layout_height="0dp"
        android:layout_weight="2">
    </LinearLayout>

    <View
        android:background="#ff00ff00"
        android:layout_width="match_parent"
        android:layout_height="1dp"/>

    <LinearLayout
        android:background="#ff00ff00"
        android:layout_width="100dp"
        android:layout_height="0dp"
        android:layout_weight="1">
    </LinearLayout>

    <LinearLayout
        android:background="#ff0000ff"
        android:layout_width="200dp"
        android:layout_height="0dp"
        android:layout_weight="1">
    </LinearLayout>


</LinearLayout>

  效果圖