Add emoji to Android keyboard

2019-04-13 05:30发布

I'm making my own custom keyboard and I have a problem with adding emoji to it. As a android:keyIcon I have a drawable of that emoji and I need android:codes for it. I don't know what to output when emoji is pressed. I've looked online for a solution, but I haven't found anything. Does anyone know what code should I use to output an emoji. Thanks in advance.

Here is a part of the xml code:

 <Row>
    <Key android:codes="1F926" android:keyIcon="@drawable/e415" />
    <Key android:codes="U+1F601" android:keyIcon="@drawable/e415" />
    <Key android:codes="57430" android:keyIcon="@drawable/e0415" />
</Row>

When I click on first or second the output is empty and when I click on the second the output is some Chinese letter.

2条回答
Animai°情兽
2楼-- · 2019-04-13 05:51

I have written custom keyboard recently. I used combination of this lib -

https://github.com/rockerhieu/emojicon (IOS-styled emoji)

and file i have uploaded here - http://www.ex.ua/116630385444

You have to parse file nad get all the codes. To properly visualize emoji use views from lib I mentioned above

The benefits would be that on all androids users would see emoji, unlike built-in ones (on some 4.2 and 4.4 androids there are only 3 (!) built-in emoji)

查看更多
该账号已被封号
3楼-- · 2019-04-13 06:00

If you are using android studio this would help (in build.gradle file):

dependencies {

   compile 'com.rockerhieu.emojicon:library:1.0'
}
查看更多
登录 后发表回答