Android布局是构建用户界面(UI)的基础。在本教程中,我们将介绍Android布局的基本概念和常用布局类型。

布局类型

在Android中,有多种布局类型可供选择,以下是一些常用的布局:

  • 线性布局(Linear Layout):线性布局是垂直或水平排列组件的基本布局。
  • 相对布局(Relative Layout):相对布局允许您指定组件相对于其他组件的位置。
  • 约束布局(Constraint Layout):约束布局是Android中最强大的布局之一,它允许您使用相对定位来创建复杂的布局。

示例

以下是一个简单的线性布局示例:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello, World!"/>

</LinearLayout>

扩展阅读

如果您想了解更多关于Android布局的信息,可以阅读以下文章:

Android线性布局示例