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显示的文本全部转化为大写。