v01d
v01d

Reputation: 559

Auto Capitalisation of text in TextView

How do I capitalise all the text in TextView in android?

android:textAllCaps="true"

works for ICS and above but not for lower versions. I wish to do the capitalisation in xml and not by using toUpper() programmatically.

Upvotes: 0

Views: 136

Answers (1)

Shailendra Singh Rajawat
Shailendra Singh Rajawat

Reputation: 8242

use android:inputType="textCapCharacters"

Upvotes: 3

Related Questions