testview字体居中
时间: 2023-09-10 16:06:26 浏览: 113
android.txt
5星 · 资源好评率100%
你可以在xml文件中的TextView标签中添加如下属性来实现文本居中显示:
```
android:gravity="center"
```
或者在Java代码中使用setTextAlignment()方法来设置文本对齐方式:
```
textView.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
```
阅读全文