SEmojis

Additional

Language
Java
Version
v1.0.19 (Oct 4, 2019)
Created
Oct 4, 2019
Updated
Apr 13, 2020 (Retired)
Owner
Akshay (TutorialsAndroid)
Contributor
Akshay (TutorialsAndroid)
1
Activity
Badge
Generate
Download
Source code

SEmojis

[SEmojis] is a library to implement and render emojis.

Library available on JitPack

AndroidX Library

Library Support androidx

Hire-Me

Are you having trouble in your android projects then let me help you with it just Email me. I love my users, so feel free to visit http://asm.life

Important

Note this library was made in the making for Kinda app this library was copied from SuperNova-Emoji-master repository on github we made this library because we want to use own library on Kinda app.So this library is in development we will monthly update this library with some changes.

Java Usage

For sample click below how i used this library in app see this.

Emojicon

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: a TextView which can render emojis.
  • EmojiconEditText: a EditText which can render emojis.
  • EmojiconMultiAutoCompleteTextView: a MultiAutoCompleteTextView which can render emojis.

Building in Android Studio

Via Gradle:


repositories {
   maven { url 'https://jitpack.io' }
}
  implementation 'com.github.TutorialsAndroid:SEmojis:v1.0.19'

Output

Acknowledgements

SEmojis is using emojis graphics from emoji-cheat-sheet.com.

License

Copyright 2019 SEmojis

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.