Display the Tifinagh alphabet on Android emulator

泄露秘密 提交于 2019-12-10 20:07:55

问题


To display Tifinagh characters on Android emulator I tried this method:

TextView tv=(TextView)findViewById(R.id.font);
Typeface face=Typeface.createFromAsset(getAssets(),"fonts/MZTIFIYU.TTF");
tv.setTypeface(face);

However it didn't work. I still see boxes instead of characters.

Is there any other way to resolve this?


回答1:


Azul :) I'm able to see the Tifinagh characters using this font: t_ircam-webfont.ttf

You could also check this answer for additional help.



来源:https://stackoverflow.com/questions/13322347/display-the-tifinagh-alphabet-on-android-emulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!