Make EditText a hint of all caps

I want the EditText tooltip to appear in the characters of the main word without adding a line string in the line file, Any help?

+5
source share
1 answer

I think this is an example that you can try:

myEditText.setHint(getResources().getString(R.string.your_text_in_string).toUpperCase()); 
+4
source

All Articles