如何在Android中显示以下面部

时间:2016-04-29 00:12:41

标签: android

我有以下字符:(つ◕_◕)つ

它像strings.xml一样进入:

<string name="faceIcon_5">༼ つ ◕_◕ ༽つ</string>

和Android Studio似乎显示的字符很好。

然而,当它实际上在手机上运行时,它看起来像这样:

enter image description here

好像有些人物无法通过android显示。我该怎么办?

1 个答案:

答案 0 :(得分:2)

您必须允许某些字符使用unicode。

// Your Text View.
tv=(TextView)findViewById(R.id.textView1);
// Get A Unicode Font
Set a unicode font to your textview. Via TypeFace font = typeface.createfromasset(getassets(), someUNIcodeFont):
// set The font to your font
tv.setTypeface(font); 
//set face to textview.
tv.setText(R.String.faceIcon_5);