How to restrict special characters from an Android EditText field?

link|improve this question

12% accept rate
feedback

1 Answer

up vote 7 down vote accepted

have you tried adding the android:digits="abcde.....012345789" attribute? although the android:digits specify that it is a numeric field it does work for me to set it to accept letters as well, and special characters as well (tested on SDK-7)

if this doesn't work then you'll have to implement KeyListener see: link text

link|improve this answer
thanks alvin its work fine – saravanan palpandi Aug 2 '10 at 9:47
I love this way. thnaks – Padma Kumar Jan 23 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.