IconicDroid是一个自定义的Android Drawable,支持从多种标志性字体中绘制图标。它并不是独立的JAR文件,而是将字体作为原始资源存储在项目中。你可以通过在Eclipse或Ant构建工具中包含该项目来使用它。
示例代码:
IconicFontDrawable iconicFontDrawable = new IconicFontDrawable(getContext());
iconicFontDrawable.setIcon(EntypoSocialIcon.GITHUB);
iconicFontDrawable.setIconColor(Color.GREEN);
findViewById(R.id.some_view).setBackground(iconicFontDrawable);
暂无评论