初学Android的时候,在Android Studio中xml里面添加一个Button、EditText等控件后,它的Text总是会显示大写,即使你输入的字符串是小写也不行,控制字符串大小写的属性是android:textAllCaps,
最后查看了一下Themes.xml文件,找到了一些端倪,发现在设置样式的时候,默认是把所有的字符串显示大写true。
如图,是从android的Style.xml中的截图,
【解决办法】
1. 把xml中你不想大写的控件添加一行
android:textAllCaps="false"
2. 上面一种方法,只是针对单个的控件,如果你想简单一点,所有的控件都不自动大写,可以打开res文件夹,找到styles.xml文件,然后添加一行<item name="android:textAllCaps">false</item>就好了;
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:textAllCaps">false</item>
</style>