如何使文本以小写字母显示,除了 android 按钮中的第一个字符
How to make text appear in small letters except its first character in android button
I have written my text in small letters but still text appears capitalized in android studio:
What if i wanted to write:"Continue"?
将以下属性添加到您的按钮
android:textAllCaps=false
button.setTransformationMethod(null);
I have written my text in small letters but still text appears capitalized in android studio:
What if i wanted to write:"Continue"?
将以下属性添加到您的按钮
android:textAllCaps=false
button.setTransformationMethod(null);