android开发可以在xml资源文件里设置自定义字体吗
发布网友
发布时间:2022-04-27 03:32
我来回答
共1个回答
热心网友
时间:2022-06-25 13:10
这个在xml中设置字体只能是系统内置的几种字体,如monospace、sans、serif等,
设置方法:android:typeface="monospace"
但是要是想设置自定义的、放在assert目录下的字体的话,只能在代码中去设置了:如:
Typeface font=Typeface.createFromAsset(this.getAssets(),"fonts/YourCustomFont.ttf");
textView.setTypeface(font);