emojimenu

General

Category
Free
Tag
Emoji
License
MIT License
Min SDK
16 (Android 4.1 Jelly Bean)
Registered
Jul 5, 2014
Favorites
0
Link
https://github.com/crowdint/emojimenu
See also
Live emojis
Emojicon
AXEmojiView
EmojiEverywhere
Emojix

Additional

Language
Java
Version
N/A
Created
Jul 25, 2013
Updated
Aug 8, 2013 (Retired)
Owner
Crowd Interactive (crowdint)
Contributor
Paul Estrada (pestrada)
1
Activity
Badge
Generate
Download
Source code

EmojiMenu

EmojiMenu is an Android Library that allows you to easily add emoji support to your Android application.

The library works by binding two Android Views:

  • The Trigger View: shows the emoji menu with the list of images.

  • The Input View: receives the symbol code of the selected image.

Configuration

1- Include the EmojiMenu directory as an Android Library Project in your application.

2- Create an 'emojis' folder in your application's assets folder

3- Copy the library emojis assets into your application's emojis or put your own icons in the folder (currently only PNGs are supported).

Usage

Declare an EmojiMenu variable in your Android application and load the Emojis:

EmojiMenu emojiMenu = new EmojiMenu(yourFragmentActivity);
emojiMenu.getEmojiStore().loadEmojis();

Bind your Android Views:

View button = mainActivity.findViewById(yourTriggerView);
EditText input = (EditText) mainActivity.findViewById(yourInputView);
emojiMenu.setBinding(button, input);