1. 线性布局 (LinearLayout)

描述
线性布局是一种按指定方向(水平或垂直)排列其子视图的布局容器。通过android:orientation属性可设置为horizontalvertical

关键属性

  • android:orientation: 指定布局方向。
  • android:layout_weight: 子视图权重,用于分配剩余空间。

示例

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2" />

</LinearLayout>

2. 相对布局 (RelativeLayout)

描述
相对布局允许子视图相对于其他视图或父容器的位置进行定位,而不是基于屏幕坐标系。

关键属性

  • android:layout_alignParentLeft/Right/Top/Bottom: 相对于父容器对齐。
  • android:layout_toLeftOf/toRightOf/below/above: 相对于兄弟视图定位。
  • android:layout_centerInParent: 在父容器中心对齐。
  • android:layout_centerHorizontal/Vertical: 在水平或垂直方向居中。

示例

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title"
        android:layout_centerHorizontal="true" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Click me"
        
02-08 05:59