I have got a EditText.
I only want input characters: a->z,A->Z,0->9 and @.#,-,_
How can limit key on keyboard input in EditText?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Try this
|
|||||||||
|
|
you can try this
|
|||
|
|
|
The first idea coming to my head is to create a |
|||
|
|
|
Check this out: android:inputType If you do not find good combination then implement your own listener and validate text each time it is changed. |
|||
|
|
|
You can use this code snipset to check it with a regex:
You can add this cose on an event...for example on a button click. For the regex that you want you can find it on internet, or try to write your one and test it on this site: Regexplanet |
|||
|
|
