Search code examples
androidandroid-edittextandroid-keypad

Android EditText : How to avoid user enter smileys?


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


Solution

  • 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?