本文介绍了如何发送和接收的表情符号web服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用这个库获得的表情符号,它完美展现的表情符号,但我怎么能发送/接收到服务器为我的聊天应用程序。
谢谢 -

I need to use emoji for chat in my android application.I'm using this library https://github.com/rockerhieu/emojicon to get emoji, its perfectly shows emoji but how can I send/receive to the server for my chat application.Thanks-

这是我的code为获得使用的表情符号库的帮助

This is my code for getting Emoji with the help of library

   <com.rockerhieu.emojicon.EmojiconTextView
            android:id="@+id/txtEmojicon"
            android:text="I \ue32d emojicon"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    <com.rockerhieu.emojicon.EmojiconEditText
            android:id="@+id/editEmojicon"
            android:text="I \ue32d emojicon"
            emojicon:emojiconSize="28sp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

这表明在表情符号和的EditText TextView的,但问题是,我怎么能得到这个表情符号发送/它receieve到server.I知道我需要得到统一code,但问题是,我如何能得到统一$ C $从这个TextView的或EditText上??

It shows emoji in EditText and TextView but issue is how can I get this emoji to send/receieve it to the server.I know I need to get Unicode but issue is how can I get Unicode from this Textview or EditText??

推荐答案

表情符号只是单向code。正如你可以在该库看到:的android:文本=I \\ ue32d emojicon,其中 ue32d 表示的心脏表情符号。

Emojis are just unicode. As you can see on that library: android:text="I \ue32d emojicon" where ue32dstands for that heart emoji.

更多关于UNI code表情符号:

More on unicode emojis: http://apps.timwhitlock.info/emoji/tables/unicode

所以,你可以简单的文本发送到您的服务器,并在另一侧显示它通常,它应该被渲染为图像。

So you can simple send the text to your server and on the other side display it normally and it should be rendered as an image.

这篇关于如何发送和接收的表情符号web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-05 05:21