LinearLayout

LinearLayout 中是排列其子在一列或者單行 ViewGroup。可以通過呼叫方法 setOrientation()或使用 xml 屬性 android:orientation來設定方向。

  1. 垂直方向android:orientation="vertical"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/app_name" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@android:string/cancel" />

</LinearLayout>

以下是截圖如下:

http://i.stack.imgur.com/Qshxzl.jpg

  1. 水平方向android:orientation="horizontal"

     <TextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="@string/app_name" />
    
     <TextView
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="@android:string/cancel" />
    

LinearLayout 還支援使用 android:layout_weight 屬性為個別孩子分配權重