内容:
[table]
|LinearLayout|水平布局
(可水平或者垂直布局)|
|TableLayout|表格布局
(布置表格布局)|
|RelativeLayout|相对布局|[code="java"][/code]
[/table]
[table]
|LinearLayout|水平布局
(可水平或者垂直布局)|
<LinearLayout
xmlns:android=
"http://schemas.android.com
/apk/res/android"
android:orientation
="vertical"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
>
|TableLayout|表格布局
(布置表格布局)|
<TableLayout android:id
="@+id/tableLayout1" android:layout_height
="wrap_content" android:layout_width
="fill_parent">
|RelativeLayout|相对布局|[code="java"][/code]
[/table]