既然说的是字体图标,那么肯定和android字体有关系。所以,我们先回顾一下基础知识Android 字体设置-Typeface,老司机请略过该部分
一、Android 字体设置-Typeface
控件的字体设置的两种方式
常用的字体类型名称还有:
Typeface.DEFAULT //常规字体类型
Typeface.DEFAULT_BOLD //黑体字体类型
Typeface.MONOSPACE //等宽字体类型
Typeface.SANS_SERIF //sans serif字体类型
常用的字体风格名称还有:
Typeface.BOLD //粗体
Typeface.BOLD_ITALIC //粗斜体
Typeface.ITALIC //斜体
Typeface.NORMAL //常规
- 在xml中设置。
使用android:typeFace来设置:
Android:typeface=”sans” - 在Java程序中:
Typeface font = Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
p.setTypeface( font );
String familyName = “宋体”;
Typeface font = Typeface.create(familyName,Typeface.BOLD);
p.setTypeface(font);
使用外部字体
1.首先吧要使用的字体文件拷贝到assets下的fonts目录下。
2.代码如下:
private void mySetTypeFace() {
// TODO Auto-generated method stub
//从assert中获取有资源,获得app的assert,采用getAserts(),通过给出在assert/下面的相对路径。在实际使用中,字体库可能存在于SD卡上,可以采用createFromFile()来替代createFromAsset。
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/HanYi.ttf");
//title是之间定义的控件
title.setTypeface(face);
}
然后根据上面的基础知识,我们封装一个使用自定义字体的TextView : IconFontTextView ,具体代码如下:
public class IconFontTextView extends TextView {
public IconFontTextView(Context context) {
super(context);
init(context);
}
public IconFontTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public IconFontTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init(context);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public IconFontTextView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
init(context);
}
private void init(Context context) {
setTypeface(getTypeFace(context));
}
private static Typeface tf;
public static Typeface getTypeFace(Context ctx) {
if (tf == null) {
tf = Typeface.createFromAsset(ctx.getAssets(), "fonts/icomoon.ttf");//icomoon字体是在icomoon生成的字体,具体参考下文
}
return tf;
}
}
二、图标字体
说了这么多终于要进入了我们今天的重头戏,就是使用图标字体来替换我们当然图标,这里安利一个网站icomoon,对于如何使用,这里就不费笔墨了,请移步博客如何灵活利用免费开源图标字体-IcoMoon篇。
至于字体生成原理及使用技巧,请参考iconfont原理,对于SVG这里不做讨论~~有兴趣的读者自行查阅。
明白了如何使用,选择或者上传自己需要的图标,并下载后,拿到里面的字体icomoon.ttf。复制到拷贝到assets下的fonts目录下(main目录底下),结合刚刚封装的IconFontTextView,如下使用:
//打开icomoon中下载文件中demo.html,就可以到项目中使用的所有字体图标的值,可以定义到valus文件夹底下的fonts.xml(注意\ue中间加u进行转义)
\ue999
三、巧妙解决ellipsize的bug
过程中碰到了一个问题,不知道大家是怎么解决,先看个对比效果
上面的代码展示的是第一行,明显图标都不见了。这是由于text太长省略的时候,android:ellipsize直接把imagvew挤压出了父view的边界。这个是为什么呢?可能是google的一个bug,不知道有人知道原因的吗?可以肯定的是计算的时候先计算了父布局,然后是左侧的item_namey,因此优先显示,然后图标就被挤出去了。
那么解决思路也有了,我们只要先计算图标就可以。
你是不是也想到了!利用相对布局的 android:layout_toLeftOf="@+id/ll_icon" ,这样就是 item_name相对与 ll_icon,于是优先计算的是 ll_icon,这样就没有问题了
参考
ICON-FONT图标字体的四类制作方法