旁遮普文字在移动设备上没有正确显示

时间:2013-07-26 11:12:47

标签: android fonts typeface

我使用了许多旁遮普字体,如bulara_f.ttf,anmollipi,Akaash等等,但每次使用旁遮普语enter image description here“sihari”时都会出现问题

Sihari:Sihari相当于我的针脚或薄。因此,在本单元中,我们将用/ i /.

表示sihari元音

在我的应用程序中,只有这一个单词没有像下面的快照那样正确显示...请帮助...

修改     我正在使用这种方法

Typeface myfont;
        myfont=Typeface.createFromAsset(getAssets(),"font.ttf");
    TextView textview = (TextView)findViewById(R.id.TextView01);
    //textview.setText("punjabi Text");
    textview.setTypeface(myfont);
}

enter image description here

1 个答案:

答案 0 :(得分:0)

使用bulara_5.ttf并在设备上运行代码,它会显示正确的旁遮普语词

mTvAbout = (TextView) findViewById(R.id.tv_about);
        font = Typeface.createFromAsset(this.getAssets(), "bulara_5.ttf");
        mTvAbout.setTypeface(font);
        mTvAbout.setText(" ਜਾਣਕਾਰੀ");