Android EditText : How to avoid user enter smileys

2019-06-24 01:13发布

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

2条回答
我欲成王,谁敢阻挡
2楼-- · 2019-06-24 01:49

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 "";
    }
 }
});
查看更多
祖国的老花朵
3楼-- · 2019-06-24 02:09

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?

查看更多
登录 后发表回答