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
In kotlin, in .kt file make changes:
edit_text.filters = edit_text.filters + InputFilter.AllCaps()
Use synthetic property for direct access of widget with id. And in XML, for your edit text add a couple of more flag as:
This will update the keyboard as upper case enabled.