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" />
原文地址:https://www.cnblogs.com/WTFFFFFF/p/9007402.html
时间: 2024-11-01 21:10:34