我是Android领域的新手.我已经按照在模拟器上获取印地语字体的过程但仍然印地语字符出现在方框中.请帮我怎么办.我使用的是android 2.2,juno版本.任何有关上述问题的帮助将受到高度赞赏.
解决方法:
在Android中的TextView上设置印地语字体
TextView t = new TextView(this);
Typeface Hindi = Typeface.createFromAsset(getAssets(), "fonts/mangle.ttf");
t.setTypeface(Hindi);
t.setText("Naveen Tamrakar");