I have TextView. I would like to show text in upper case mode.
Is there attributed for upper case?
Just I have text in strings.xml and I need use the line in several place as lower case and upper case.
I have TextView. I would like to show text in upper case mode. Is
Share
Use
Stringclass method while setting the text toTextViewasHave a look at this post for detail discussion.
EDIT: This was answered way back before API 14. As other answer mentioned here,
textView.isAllCaps = trueand its java methods were introduced fromTextView. Please use those.