3

I want to allow only alphabets, numbers and some of the special characters in Edit text:

android:digits="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 ()*-_,;':."

I also want to allow am-percent(&) and double quote (") When I add am-percent in digits i get this error

The entity name must immediately follow the '&' in the entity reference.

How do I add both of these special characters??

WISHY
  • 11,067
  • 25
  • 105
  • 197

2 Answers2

2

Try using & and "

You can find a full list here: List of XML and HTML character entity references

Simon
  • 9,762
  • 15
  • 62
  • 119
0

You can use Regular Expression for achieve this

Abhishek Patel
  • 4,280
  • 1
  • 24
  • 38