问题描述
我正在将json
中的某些unicodes
解析为我的android
应用程序,该api给出unicodes
这样的图标,如\ue600
,当我将此unicode直接添加到textview
中时,例如textview.setText("\ue600");
时,在textview
上提供正确的图标.但是当我从json
api
&解析此unicode时,那么我setText
那个unicode
它只是在textview
上显示\ue600
.我如何将这些字符串解析或转换为unicodes
以获得textview
中的图标.
I am parsing some unicodes
from json
to my android
app, the api gives unicodes
of icons like \ue600
, When I add this unicode directly into the textview
like textview.setText("\ue600");
it gives right icon on the textview
. but when i parse this unicode from json
api
& then I setText
that unicode
it just displays \ue600
on textview
.How I parse or convert these strings into unicodes
to get the icons in textview
.
谢谢
推荐答案
将您的unicode
转换为这种格式
&然后像这样在textview
textview.setText(Html.fromHtml(your_unicode_here));
中使用应该可以.
Convert your unicode
into this format 
& then use like this in your textview
textview.setText(Html.fromHtml(your_unicode_here));
It should work.
这篇关于如何在Android中将字符串转换为Unicode的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!