I have a TextView. I\'m trying to capitalize the first letter in every word.
Here\'s the TextView:
android:capitalize is deprecated on ICS, so I guess it should be better to do it in code (i.e. with String.toUpperCase())
Another try could be
android:inputType="textCapWords"
but I guess it would require an EditText to work.
I don't know if this is the reason for your code, what version are you targeting?