Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Button always showing text in uppercase-solution

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 296
    Comment on it

    I found that sometimes button showing text in upper case.

    I have found the solution that we just need to define property textAllCaps in the xml file.

    For example

     <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="Hello"
    
                    />

    We see that button show "HELLO" text

    Now after define textAllCaps as false the text all characters will not apper in upper case.

     <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="Hello"
                    android:textAllCaps="false"
                    />

    We see that button show "Hello" text

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: