1:LinearLayout 线性布局:
一行一行的呈现。
2:TableLayout表格布局:
关键字:TableRow:用于表明表格里面的一行。
深入入看 这里:
简单示范:
<!-- 定义第一个表格布局,指定第2列允许收缩,第3列允许拉伸 -->
<TableLayout android:id="@+id/TableLayout01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:shrinkColumns="1"
android:stretchColumns="2">
<!-- 直接添加按钮,它自己会占一行
columns:列。 shrink:收缩。 stretch:伸展。
-->
<Button android:id="@+id/ok1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="独自一行的按钮"/>
<!-- 添加一个表格行 -->
<TableRow>
<!-- 为该表格行添加三个按钮 -->
<Button android:id="@+id/ok2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="普通的一个按钮"/>
<Button android:id="@+id/ok3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="收缩按钮"/>
<Button android:id="@+id/ok4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="拉伸按钮"/>
</TableRow>
</TableLayout>
截图:
3:相对布局Relative Layout:
关键理解layout:
layout_centerInParent="true":容器中心。
android:layout_above="@id/bt31":在bt31上面。
android:layout_alignLeft="@id/bt31":以bt31右边为边界。
layout_toLeftOf="@id/bt31":靠近bt31的左边
参考代码:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="3相对布局Relative Layout"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:id="@+id/bt31"
android:text="bt31" />
<!--layout_centerInParent:位于中心。
相对bt31上下左右-->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt32"
android:text="bt32上"
android:layout_above="@id/bt31"
android:layout_alignLeft="@id/bt31"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt33"
android:text="bt33下"
android:layout_alignRight="@id/bt31"
android:layout_below="@id/bt31"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt34"
android:text="bt34左"
android:layout_alignTop="@id/bt31"
android:layout_toLeftOf="@id/bt31"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt35"
android:text="bt35右"
android:layout_alignTop="@id/bt31"
android:layout_toRightOf="@id/bt31"/>
</RelativeLayout>
截图:
4:帧布局 Frame Layout:
简单速记:多个组件层叠排序,后面的组件覆盖前面的组件。
建议看这里。
5:网格布局 Grid Layout
看这里:
速记:row行,column列。
6:绝对布局 Absolute Layout
不推荐使用。看这里。
7:约束布局ConstraintLayout
推荐使用。看这里。