📅  最后修改于: 2023-12-03 15:29:20.922000             🧑  作者: Mango
在 Android development 中,LinearLayout 布局非常常见,它能方便地将布局中的控件按照水平或垂直的方式排列。
在使用 LinearLayout 布局的时候,我们有时需要设置子控件之间的边距,这里给大家介绍几种设置边距的方法。
在布局中,我们可以使用 padding 属性为子控件设置内边距,代码如下:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Button" />
</LinearLayout>
这里给 LinearLayout 布局设置了 16dp 的 padding,在子控件中使用 layout_margin 属性设置了 Button 与 TextView 之间的外边距。
我们也可以直接使用 layout_margin 属性为子控件设置外边距,代码如下:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="16dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Button" />
</LinearLayout>
这里我们为 LinearLayout 布局设置了左右和下方的外边距,再使用 layout_marginTop 属性设置了 Button 与 TextView 之间的外边距。
有时候我们需要控制子控件在父控件中的位置,可以使用 layout_gravity 属性。
代码如下:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_gravity="center_horizontal" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="Button"
android:layout_gravity="center_horizontal" />
</LinearLayout>
这里我们使用了 LinearLayout 的 gravity 属性将子控件居中,在 TextView 和 Button 中使用 layout_gravity 属性让它们水平居中。
以上是关于 Android Studio LinearLayout 设置边距的介绍。