Android使用IconFont显示图片,从而缩小体积
Posted wtffffff
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android使用IconFont显示图片,从而缩小体积相关的知识,希望对你有一定的参考价值。
1、从http://www.iconfont.cn/选取需要添加的图标,添加到购物车。
2、在购物车中选择下载代码。
3、打开压缩包,将压缩包中的四个文件放入工程中的asstes文件夹下。
4、在代码中通过设置TextView的TypeFace导入图片。
1 TextView testView = findViewById(R.id.text); 2 Typeface typeface = Typeface.createFromAsset(getAssets(), "iconfont.ttf"); 3 testView.setTypeface(typeface); 4 testView.setText(html.fromHtml("󰍃"));
<TextView android:id="@+id/text" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/white" android:gravity="center" android:textColor="#ffcc0000" android:textSize="30sp" />
以上是关于Android使用IconFont显示图片,从而缩小体积的主要内容,如果未能解决你的问题,请参考以下文章
在AI里面做好的svg图片,导出上传至iconfont,显示有问题
AI导出svg上传到阿里矢量图标库(Iconfont),图片显示不全