设置TypeFace

时间:2015-06-01 15:25:48

标签: android unicode textview

我试图在TextView内使用带有自定义字体的unicode字符。我有一个字符串:

<string name="profile_hint_1">Edit your profile &#8594;</string>

我创建TypeFace并设置TextView

Typeface fontMarkerFelt = Typeface.createFromAsset( context.getAssets(), "fonts/MarkerFeltThin-Regular.ttf" );
tvHint1.setTypeface(fontMarkerFelt);
tvHint1.setText(getResources().getString(R.string.profile_hint_1));

然后TextView的字符串使用正确的字体减去→字符。如果我注释掉这行

tvHint1.setTypeface(fontMarkerFelt);

然后→字符正确显示。有没有办法用自定义字体显示unicode字符?

0 个答案:

没有答案