1

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?

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 Answers1

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