本文介绍了表情符号edittext应该返回Unicode的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在研究表情符号。



我用过库。



它工作正常,但是当我从 c

请同样帮我。

解决方案

最后我找到了解决方案。



您可以使用 commons-lang-2.5 jar


从表情符号中获取unicode

检查以下代码以将表情符号转换为unicode。

  String textVal = edtpost.getText()。toString( ); 
String newval_unicode = StringEscapeUtils.escapeJava(textVal);

您可以从此字符串中找到uni代码。



此答案可以帮助其他人。


I am working on Emoji.

I have used this library.

It works fine, But when i get text from the EmojiconEditText it do not returns me unicode which are used in that edittext.

As example If text is I \ue32d emojicon wher \ue32d is a heart icon. When use String Text=EmojiconEditText .gettext(); it should return the same text as "I \ue32d emojicon"

Please help me for the same.

解决方案

Finally i found solution.

You can get unicode from emoji by using commons-lang-2.5 jar

Check below code for emoji to unicode.

String textVal=edtpost.getText().toString();
String newval_unicode=StringEscapeUtils.escapeJava(textVal);

You can find uni code from this string.

May this answer help others.

这篇关于表情符号edittext应该返回Unicode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 21:11