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
try this code it will make your input into upper case
edittext.setFilters(new InputFilter[] {new InputFilter.AllCaps()});