I know how to force numbers, texts etc.. but is there a flag or IME options for me to force the EditText to accept only certain language like English in case my DB fields can accept only English characters ? of course i can check and notify the users on bad input but that's not exactly user friendly...
Implementing my own filter on the EditText might also be possible but I'm not sure it will force the keyboard layout itself to be in the language i need.
Any idea ?
For English Character only:
android:digits="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
With symbols that's, you have defines in digits string:
android:digits="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ !@#$%^*?"