In my Android application I have different EditText where the user can enter information. But I need to force user to write in uppercase letters. Do you know a
EditText
Set the input type to TYPE_CLASS_TEXT| TYPE_TEXT_FLAG_CAP_CHARACTERS. The keyboard should honor that.
input type
TYPE_CLASS_TEXT| TYPE_TEXT_FLAG_CAP_CHARACTERS
keyboard