AppCompatTextView文本设置为大写
如果你想让AppCompatTextView
的文本全是大写,可以使用android:textAllCaps
属性。将其设置为true
即可。
例如:
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textAllCaps="true" />
这将使得AppCompatTextView
显示的文本全部转化为大写。