Hi in my android application I have an edittext where inputtype is person name, but for that special characters are allowed, what I need is an edittext where I need to enter only digits and letters. But I need to validate for all digits, if all digits enter means error message need to shown.
I did like this
android:digits="0123456789qwertzuiopasdfghjklyxcvbnmQWERTZUIOPASDFGHJKLYXCVBNM"
android:inputType="textFilter"
and with this we can enter all digits also... but if user enter all digits I need to show a error message.