Android Studio – InputFilter for restricting EditText input to HEX (android:digits not working)
How to write InputFilter to restrict EditText input to HEX numbers? I need to restrict all characters except 0123456789abcdefABCDEF android:digits doesn`t work anymore after I increased target api from 29 to 30: android:digits="0123456789abcdefABCDEF" android:inputType="text|textNoSuggestions" Here is my XML: <?xml version="1.0"…