我在Android Studio中看到了很多有关ttf字体的引用,但是都没有描述otf类型字体的用法。有没有一种方法可以在Android Studio项目中使用otf类型字体?

最佳答案

始终支持TTF。后来至少在1.6和更高版本中添加了OTF,但部分添加了。

Typeface face;

face = Typeface.createFromAsset(getAssets(), "font.otf");

textview.setTypeface(face);

有用的链接:Use external fonts in android

您可以转换此页面:http://www.ehow.com/how_6192479_convert-dfont-ttf.htmlhttps://onlinefontconverter.com/

07-26 06:57