问题简介
在Button里显示英文字符时,全部是大写显示的.
解决方案
在Button的属性中增加
android:textAllCaps="false"
完整样例:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAllCaps="false"
android:text="Test"/>
网友评论