Studio Android Lower Case Letters on a Button

<Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/btnLogin"
            android:text="Login for Chat"
            
            //This is how to maintain lower case letters on android buttons :
           
            android:textAllCaps="false"/>
Jealous Jackal