我正在尝试在我的应用程序中显示泰卢固语字体。代码
Typeface Telugu;
Telugu = Typeface.createFromAsset(getAssets(),"fonts/withG.ttf");
TextView tt = (TextView)findViewById(R.id.label);
tt.setTypeface(Telugu);
tt.setText("Some telugu text");
这在 Android 4.2 中运行良好。但是在 Android 2.2 中运行应用程序时,连词不能正确呈现。
小伙伴们知道该怎么做吗?