我有以下字符:(つ◕_◕)つ
它像strings.xml
一样进入:
<string name="faceIcon_5">༼ つ ◕_◕ ༽つ</string>
和Android Studio似乎显示的字符很好。
然而,当它实际上在手机上运行时,它看起来像这样:
好像有些人物无法通过android显示。我该怎么办?
答案 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);