如果想设置 TextView、Button 文字大写显示,可以这样在 xml 中添加该属性 android:textAllCaps="true"。
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:text="Text"/>
如果该属性被设置为 false 及 android:textAllCaps="false",那么该内容并不会转换成小写,而是原样显示及内容是什么就显示什么。
About Me