Decapitalizing text in Android view -


i want insert text android view, button. problem want capitalize specific characters in text, android capitalize text in text field. example, labeled button text "example" in capitalize characters "e" , "m", saw "example" instead. give me suggestions?

add: android:textallcaps="false" style of button

so change:

<button     android:id="@+id/testbutton"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="example" /> 

to:

 <button     android:id="@+id/testbutton"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:textallcaps="false"     android:text="example" /> 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -