I\'m working on a little personal todo list app and so far everything has been working quite well. There is one little quirk I\'d like to figure out. Whenever I go to add a
For Capitalisation in EditText you can choose the below two input types:
- android:inputType="textCapSentences"
- android:inputType="textCapWords"
textCapSentences
This will let the first letter of the first word as Capital in every sentence.
textCapWords This will let the first letter of every word as Capital.
If you want both the attributes just use | sign with both the attributes
android:inputType="textCapSentences|textCapWords"