LinearLayout
该 LinearLayout 中是排列其子在一列或者单行 ViewGroup
。可以通过调用方法 setOrientation()
或使用 xml 属性 android:orientation
来设置方向。
- 垂直方向 :
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
-
水平方向 :
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
属性为个别孩子分配权重 。