Aghajari / AXEmojiView

an advanced library which adds emoji,sticker,... support to your Android application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do I use it with inputmethodService?

DineshNeupane opened this issue · comments

How do I use it with android softkeyboard inputmethodservice as a popup?

Hi,
What are you looking for exactly ?
see the app, everything exists already!

and simply you can use AXEmojiPopup, it will handle everything :)

Basic Usage :

AXEmojiPopup emojiPopup = new AXEmojiPopup(emojiView);

emojiPopup.toggle(); // Toggles visibility of the Popup.
emojiPopup.show(); // Shows the Popup.
emojiPopup.dismiss(); // Dismisses the Popup.
emojiPopup.isShowing(); // Returns true when Popup is showing.

@DineshNeupane Any update if you have achieved it?