android:layout_marginHorizontal
时间: 2024-05-07 07:21:14 浏览: 177
Android应用中通过Layout_weight属性用ListView实现表格
android:layout_marginHorizontal 是一个布局属性,用于指定视图左右两侧的外边距。它可以用于任何视图,包括布局容器和单个视图。
该属性是 Android 8.0 (API 级别 26) 引入的,用于简化布局代码。在此之前,需要分别指定 android:layout_marginStart 和 android:layout_marginEnd 来设置左右外边距。
例如,如果要将一个 TextView 放在屏幕中央,左右两侧留有 16dp 的外边距,则可以使用以下代码:
```
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_gravity="center"
android:layout_marginHorizontal="16dp" />
```
这将在 TextView 左右两侧添加相同的外边距,使其在水平方向上居中。
阅读全文