取消控件中Text默认大写的方法

来源:互联网 发布:linux下串口调试 编辑:程序博客网 时间:2024/06/05 10:29

在values/style.xml中添加(黄色字体)

<resources>    <!-- Base application theme. -->    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">        <!-- Customize your theme here. -->        <item name="colorPrimary">@color/colorPrimary</item>        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>        <item name="colorAccent">@color/colorAccent</item>        <item name="android:textAllCaps">false</item>    </style></resources>
value/style.xml的位置


原创粉丝点击