4

I would like to avoid to the user to put a smiley with the keyboard into an EditText. Is it possible ?

enter image description here

wawanopoulos
  • 9,614
  • 31
  • 111
  • 166

2 Answers2

13

Editing answer from here.

This will allow only ASCII characters to be entered in EditText.

edittext.setFilters(new InputFilter[] {
 new InputFilter() {
    public CharSequence filter(CharSequence src, int start,
            int end, Spanned dst, int dstart, int dend) {
        if(src.equals("")){ // for backspace
            return src;
        }
        if(src.toString().matches("[\\x00-\\x7F]+")){
            return src;
        }
        return "";
    }
 }
});
Community
  • 1
  • 1
KRUPEN GHETIYA
  • 211
  • 2
  • 6
0

You can define your input type and only accept letters or change your keyboard type:

https://developer.android.com/training/keyboard-input/style.html

Or you can only accept some specific digits:

How to create EditText accepts Alphabets only in android?

Community
  • 1
  • 1
TheOnlyJakobob
  • 541
  • 3
  • 14