Android Keyboard with Emoji

前端 未结 4 1817
悲哀的现实
悲哀的现实 2020-12-03 01:25

So I want to have a keyboard in my app that has emoji just like Whatsapp or Hangouts. How can I do that? I want to leave my key keyboard as it is I just want to add tabs to

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-03 01:56

    As @dbar pointed out, the answer is:

    android:inputType="textShortMessage"
    

    But in my case, I was already using textMultiLine, so I had to use the both of them together:

    android:inputType="textMultiLine|textShortMessage"
    

    Looks like this:

    I'm not sure about the Exact android version, but this should work only on Android 4.1 and above

提交回复
热议问题