自己导入的字体怎么用不了,咖啡的字体可以用
来源:3-3 基础框架可用性验证
qq_蓝城_1
2017-11-11
这个用不了
这个是可以用的
写回答
2回答
-
慕仙3596748
2017-11-12
很详细了
先去http://www.iconfont.cn下载资源
解压缩,将iconfont.ttf复制到assets目录
demo_unicode.html内有图标unicode,如图
3.创建2个类FontEcModule,EcIcons:
public enum EcIcons implements Icon{
//将上面换成\ue600
icon_scan('\ue638'),
icon_ali_pay('\ue600');
...(不变)
}
public class FontEcModule implements IconFontDescriptor{
...
}
4.在App中初始化,Latte.init().withIcon(new FontEcModule()).configure()
00 -
慕仙3596748
2017-11-12
iconify使用详解:http://www.cnblogs.com/zyw-205520/p/7266225.html
可能是类EcIcons中icon_scan('\ue609')括号里面的unicode码不对
012017-11-12
相似问题