Search code examples
androidandroid-5.0-lollipoptextview

Button autocaps text with api version 21 or higher in Android. Why?


I am trying to set text to a button like Go To Url and as result on screen i'm getting GO TO URL while compiling with Android API 21 , I don't want to show all text in CAPS, what i am missing ? Please help.

enter image description here


Solution

  • Solution

    Need to set auto CAPS property of a button as false in xml

    android:textAllCaps="false"