I am using Edittext which is allowed to specific characters. Like a-z A-Z 0-9 and Special characters like )&'(".
For the above requirement I used digits in Edittext to restrict rest of the other special characters getting typed.
The digits not supported ' & " chars so I used html code &apos ; & ; " ; respectively.
Now the problem is I want to allow accent characters too. I found the html code for accent Á is Á ; but digits is showing error like
" The entity "Aacute" was referenced, but not declared. ".
Kindly provide any solution for this or Is there any solution to allow accent character with a-z,A-Z,0-9 and 5 special character )&'(" in Edittext?