Does this exist? I need to make a TextView which is always uppercase.
You could do it, only adding TYPE_TEXT_FLAG_CAP_CHARACTERS to InputType::
editText.setInputType(android.text.InputType.TYPE_CLASS_TEXT + android.text.InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS);
I hope be helped!