How to Integrate Emojis Keyboard in your Android App
A simple library to add Emoji support to your Android app. In a PopupWindow Emojis can be chosen. In order to edit and display text with Emojis this library provides public APIs: EmojiEditText , EmojiTextView & EmojiButton . The library has 3 different providers to choose from ( iOS , Google & Twitter ). iOS Emojis For getting the above iOS Emojis simply add the dependency and code below. compile ' com.vanniktech:emoji-ios:0.6.0 ' And install the provider (preferably in your Application class): // This line needs to be executed before any usage of EmojiTextView, EmojiEditText or EmojiButton. EmojiManager . install( new IosEmojiProvider ()); Google For getting the above Google Emojis simply add the dependency and code below. compile ' com.vanniktech:emoji-google:0.6.0 ' And install the provider (preferably in your Application class): // This line needs to be executed before any usage of EmojiTextView, EmojiEditText or EmojiBu...