-2

I have written my text in small letters but still text appears capitalized in android studio:

What if i wanted to write:"Continue"?

enter image description here

user5949689
  • 101
  • 2
  • 8
  • this is because the style applied to all default Button widgets in android has the property textAllCaps set to true – Bhargav Feb 24 '16 at 08:10
  • 2
    Possible duplicate of [Cannot lower case button text in android studio](http://stackoverflow.com/questions/24880388/cannot-lower-case-button-text-in-android-studio) – Strider Feb 24 '16 at 08:12
  • Follow this link: http://stackoverflow.com/questions/24880388/cannot-lower-case-button-text-in-android-studio – user5783725 Feb 24 '16 at 08:13

2 Answers2

3

add the following attribute to your button

android:textAllCaps=false

W.K.S
  • 9,787
  • 15
  • 75
  • 122
0

button.setTransformationMethod(null);

Akshay Shinde
  • 945
  • 10
  • 23