I have a TextView. I\'m trying to capitalize the first letter in every word.
Here\'s the TextView:
This is a late answer but I think might help someone...
If you are comfortable with capitilizing the dynamic text in the java code then you can use:
textView.setText(text.toUpperCase());