tags:

views:

195

answers:

1

how to block characters in edittext in android?

+3  A: 

You can use an InputFilter to restrict input on EditTexts. Either implement your own or use a NumberKeyListener for numeric input.

Josef
thnxs for ur help.
deepthi