Android textview 位于水平居中
时间: 2024-01-19 19:18:03 浏览: 149
以下是两种在Android中实现TextView水平居中的方法:
1. 使用LinearLayout实现水平居中:
```xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
</LinearLayout>
```
2. 使用RelativeLayout实现水平居中:
```xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Hello World!" />
</RelativeLayout>
```
阅读全文