Validation allow only number and characters in edit text in android

后端 未结 9 1417
抹茶落季
抹茶落季 2020-11-27 16:20

In my application I have to validate the EditText. It should only allow character, digits, underscores, and hyphens.

Here is my code:

edit         


        
9条回答
  •  死守一世寂寞
    2020-11-27 17:23

    please try 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)

提交回复
热议问题