标签:android style blog http color io 使用 文件 sp
再也不用做那些讨厌的小图标了!
从网上找了些资料,总结下在android上使用fontAwesome的方法。
1.到官网上下载资源包,找到其中的字体文件fontawesome-webfont.ttf,复制到程序的assets中,其实这一步就和使用其他字体一样。
2.http://fontawesome.io/cheatsheet/到这个网站查询你所需要的图标的unicode。
3.可以建立一个Textview的子类,用来统一设置字体样式,代码如下
public class FontAwesomeTextView extends TextView { public FontAwesomeTextView(Context context, AttributeSet attrs) { super(context, attrs); Typeface font = Typeface.createFromAsset(context.getAssets(), "fontawesome-webfont.ttf"); this.setTypeface(font); } }
4.在需要的xml中用自定义的类代替TextView
5.设置相应的textview的内容
call_icon_view.setText(Html.fromHtml(""));
注意,这里不能直接设置为"",需要用到Html.fromHtml(""),底层原因待研究!
标签:android style blog http color io 使用 文件 sp
原文地址:http://www.cnblogs.com/breezemist/p/4012614.html