1

我想通过使用 android 1.5 开发一个可以显示/支持阿拉伯字体的应用程序 android,我找到了 DejaVu 字体,但我该如何使用它?

4

1 回答 1

0

要使用自定义字体,请使用此代码,

TextView txt = (TextView) findViewById(R.id.custom_font);  
Typeface font = Typeface.createFromAsset(getAssets(), "YourFontNamer.rtf");  
txt.setTypeface(font);

如果你需要更多参考这个博客http://mobile.tutsplus.com/tutorials/android/customize-android-fonts/

于 2012-07-06T09:51:11.223 回答