100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > Android Button字母自动全部大写的问题

Android Button字母自动全部大写的问题

时间:2022-03-24 19:28:05

相关推荐

Android Button字母自动全部大写的问题

两种解决方案:

方法一:

在 xml 布局中设置属性android:textAllCaps="false"

<Buttonandroid:layout_width="wrap_content"android:layout_height="match_parent"android:text="添加动作组"android:textAllCaps="false"android:id="@+id/btn_action_add"/>

效果:单个组件生效

方法二:

style中加入<item name="android:textAllCaps">false</item>

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"><!-- 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>

效果:全局生效

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。