We wanted to enable the emoji as default in our android app. That is, when a user try to type something, the keyboard should popup with emojis by default. What is the configurations done in xml
or activity.java
files?
Asked
Active
Viewed 1,096 times
1

mpsbhat
- 2,733
- 12
- 49
- 105
-
Check this: https://stackoverflow.com/questions/16768930/implementations-of-emoji-emoticon-view-keyboard-layouts – Vinay Jaju Oct 11 '17 at 06:41
1 Answers
0
using the answer here EditText messageInput = (EditText) findViewById(R.id.message_input);
messageInput.getText().append("\ud83d\ude01");
reference question
or you can use one of the libraries emoji
or this super-nova

tamtom
- 2,474
- 1
- 20
- 33