All Projects → AnkitKiet → EmojiConverter

AnkitKiet / EmojiConverter

Licence: other
Android Library for EditText

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to EmojiConverter

Gsyricktext
类似微博的emoji表情、@人、话题等的EdiText,优化了编辑框中的光标点击和删除处理。TextView支持emoji表情、话题、链接、电话和@某人特殊显示的文本。
Stars: ✭ 651 (+1760%)
Mutual labels:  emoji, edittext
Spedittool
An efficient and scalable library for inputing and displaying gif or @mention on graph-text mixed TextView/EditText
Stars: ✭ 292 (+734.29%)
Mutual labels:  emoji, edittext
ermoji
🤷‍♂️ RStudio Addin to Search and Copy Emoji
Stars: ✭ 26 (-25.71%)
Mutual labels:  emoji
vemdezapbe.be
Vem de zap bb 😏😊😂
Stars: ✭ 33 (-5.71%)
Mutual labels:  emoji
emoji-prediction
🤓🔮🔬 Emoji prediction from a text using machine learning
Stars: ✭ 41 (+17.14%)
Mutual labels:  emoji
slack-emoji-kr
한글을 활용한 슬랙 커스텀 이모지
Stars: ✭ 33 (-5.71%)
Mutual labels:  emoji
ember-emojione
EmojiOne helper and components for your Ember App
Stars: ✭ 16 (-54.29%)
Mutual labels:  emoji
yet-another-emoji-support
This is the IntelliJ plugin that supports inserting emoji in editor using content assist.
Stars: ✭ 30 (-14.29%)
Mutual labels:  emoji
emojifont
🍭Emoji and fontawesom in both base and ggplot2 graphics
Stars: ✭ 61 (+74.29%)
Mutual labels:  emoji
rafiki-zsh
👀👻 A zsh friend to watch over you.
Stars: ✭ 50 (+42.86%)
Mutual labels:  emoji
emojix
Simple emoji library for Elixir 💩
Stars: ✭ 21 (-40%)
Mutual labels:  emoji
purescript-emo8
🍠 A functional 2D game engine that can create emoji games.
Stars: ✭ 47 (+34.29%)
Mutual labels:  emoji
EmojiRunner
Search for emojis in Krunner and copy/paste them
Stars: ✭ 33 (-5.71%)
Mutual labels:  emoji
slack-emoji-import
Simple bulk emoji importer for slack
Stars: ✭ 35 (+0%)
Mutual labels:  emoji
EmoticonsBoard
Function keyboard and emotions. Android表情键盘,可动态更新表情。
Stars: ✭ 31 (-11.43%)
Mutual labels:  emoji
a11y-react-emoji
⚛️ An accessible Emoji component for React applications
Stars: ✭ 69 (+97.14%)
Mutual labels:  emoji
SuperShapeView
A smart custom view support shapes for ImageView, TextView ,EditView ,instead of shape.xml.(自定义形状控件,支持TextView,EditText)
Stars: ✭ 60 (+71.43%)
Mutual labels:  edittext
spacymoji
💙 Emoji handling and meta data for spaCy with custom extension attributes
Stars: ✭ 174 (+397.14%)
Mutual labels:  emoji
Emoji-Log-VSCode
Emoji-Log VSCode Extension — An Emoji Git commit log messages spec standard. [ 📦👌🐛📖🚀🤖 ‼️]
Stars: ✭ 44 (+25.71%)
Mutual labels:  emoji
hashflags-function
⚡ A collection of Azure functions related to Twitter hashflags
Stars: ✭ 15 (-57.14%)
Mutual labels:  emoji

EmojiConverter

This is an Android library used to convert text to Emojis in edittext. This is the most stable version of this library till date. This is under more modifications. Use It For Free.

Android Arsenal

Preview

Sample

Installation

Gradle

Add below code in build.gradle

allprojects {
	repositories {
		maven { url 'https://jitpack.io' }
		}
	}

Add a dependency

dependencies {
	compile 'com.github.AnkitKiet:EmojiConverter:1.14'
	}

Maven

Add below code for Maven installation

<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add a dependency

<dependency>
	    <groupId>com.github.AnkitKiet</groupId>
	    <artifactId>EmojiCOnverter</artifactId>
	    <version>1.15</version>
	</dependency>

How To Use

paste below code in java file

        EmojiConverter edt = (EmojiConverter) findViewById (R.id.edtRawText); //Try not adding Textwatcher on this
        final EmojiConverter emojiConverter=new EmojiConverter(MainActivity.this);
  	editText.setText(emojiConverter.convertEmoji()); //use this on an event, like a button click

paste below code in layout xml file.

 <edu.texttoemoji.EmojiConverter
        android:id="@+id/edtRawText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="type something"/>
	

License

Copyright 2017 Ankit Maurya

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].