Hello i have an EditText on which i would like to let user enter only non-numeric chars (say A-Z or a-z): is there a way to do it? All the combinations i used (text,textPersonName an so on) let the user select also numbers.
Thanks in advance c.
Hello i have an EditText on which i would like to let user enter only non-numeric chars (say A-Z or a-z): is there a way to do it? All the combinations i used (text,textPersonName an so on) let the user select also numbers.
Thanks in advance c.
I think you have to write your own InputFilter and add it to the set of filters for the EditText. Something like this might work: