Layout布局

内容:
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 相对布局

你可能感兴趣的:(layout)