Android开发使用阿里巴巴文字库踩过的坑
程序员文章站
2022-06-24 20:03:28
这里写自定义目录标题使用阿里巴巴文字库踩过的坑使用阿里巴巴文字库踩过的坑Caused by: java.lang.RuntimeException: Font asset not found iconfont/iconfont.ttf1、Typeface iconfont = Typeface.createFromAsset(getAssets(),"iconfont/iconfont.ttf");textView.setTypeface(iconfont);注意文件路径是否正确首先我根据官...
使用阿里巴巴文字库踩过的坑
Caused by: java.lang.RuntimeException: Font asset not found iconfont/iconfont.ttf
1、
Typeface iconfont = Typeface.createFromAsset(getAssets(),"iconfont/iconfont.ttf"); textView.setTypeface(iconfont);
注意文件路径是否正确
首先我根据官方文档配置字体文件,一直报Font asset not found 异常,也build clear 过多次,还是不行,路径也检查过,字体文件也重新下载过多次,也 Invalidate and Restart 过Android Studio,仍然不行
然后我根据此篇文章重建了assets目录,发现之前的开发人员犯了这样一个令人咋舌的错误:
微笑微笑微笑,最后搞好了(所以千万不要闭眼打字)
本文地址:https://blog.csdn.net/qq_32241135/article/details/107780853
上一篇: SQL数据分页查询的方法