Download The New Debate App [ Heatic Debate App ] Debate On Major Topics With This App.
Don’t forget to follow me on Instagram to stay up-to-date Follow Me
Output

SEmojis is a library to implement and render emojis to your android app this is sample library but it is in development progress new emojis to this library is coming soon.
This library is deprecating soon from github. Their will be no updates will be made for this library now
Java Usage
To Listen to keyboard status
emojIcon.setKeyboardListener(new EmojIconActions.KeyboardListener() {
@Override
public void onKeyboardOpen() {
Log.e("Keyboard","open");
}@Override
public void onKeyboardClose() {
Log.e("Keyboard","close");
}
});
XML Usage
<developer.semojis.Helper.EmojiconEditText
android:id="@+id/emojicon_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
emojicon:emojiconSize="28sp" />
<developer.semojis.Helper.EmojiconTextView
android:id="@+id/emojicon_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
emojicon:emojiconSize="28sp"/>
Usage
EmojiconTextView
: aTextView
which can render emojis.EmojiconEditText
: aEditText
which can render emojis.EmojiconMultiAutoCompleteTextView
: aMultiAutoCompleteTextView
which can render emojis.
Building in Android Studio
Installation
add gradle dependency to your dependency list:
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.TutorialsAndroid:SEmojis:v0.3'
}
Acknowledgements
SEmojis is using emojis graphics from emoji-cheat-sheet.com.