熱文導讀 | 點擊標題閱讀
歡迎加入Java和Android架構知識星球
淺談Android發展趨勢分析
程式設計師如何進階成為大神?
作者:hongjay
連結:https://www.jianshu.com/p/5658a19a66e5
前情提要:公司不讓UI乾重活,讓我自己找圖標。然後推薦使用這個開源庫。優質Icon多到數不清,還可以隨意修改icon的顏色,大小,使用起來略爽。簡書和掘金上搜不到相關博客,踩了點坑,凡事只能靠自己啊。
項目demo地址請點擊這裡:https://github.com/zjxuzhj/IconFontDemo
一、添加依賴compile "com.mikepenz:iconics-core:2.8.2@aar"compile 'com.android.support:appcompat-v7:25.1.0'
二、選擇需要依賴的圖標庫每個圖標庫都有自己的網站,可以在上面挑選自己喜歡的圖標,查找對應的圖標id
Font Awesome:http://fontawesome.dashgame.com/
ionicons:http://ionicons.com/
已Font Awesome 為例
三、icon前綴和依賴庫對應表Google Material Design Icons
"gmd"
ORIGINAL by Google compile 'com.mikepenz:google-material-typeface:+.original@aar'
Material Design Iconic Font
"gmi"
Google Material Iconic compile 'com.mikepenz:material-design-iconic-typeface:+@aar'
Fontawesome
"faw"
compile 'com.mikepenz:fontawesome-typeface:+@aar'
Meteocons
"met"
compile 'com.mikepenz:meteocons-typeface:+@aar'
Octicons
"oct"
compile 'com.mikepenz:octicons-typeface:+@aar'
Community Material
"cmd"
compile 'com.mikepenz:community-material-typeface:+@aar'
Weather Icons
"wic"
compile 'com.mikepenz:weather-icons-typeface:+@aar'
Typeicons
"typ"
compile 'com.mikepenz:typeicons-typeface:+@aar'
Entypo
"ent"
compile 'com.mikepenz:entypo-typeface:+@aar'
Devicon
"dev"
compile 'com.mikepenz:devicon-typeface:+@aar'
Foundation Icons
"fou"
compile 'com.mikepenz:foundation-icons-typeface:+@aar'
Ionicons
"ion"
compile 'com.mikepenz:ionicons-typeface:+@aar'
new IconicsDrawable(this)
.icon(FontAwesome.Icon.faw_android) //icon Id
.color(Color.RED)
.sizeDp(24) //icon 大小 dp值
使用開源庫自定義的控制項
使用普通控制項(需要註冊)
有兩種方法
在onCreate函數中加入代碼
然後就可以使用了
六、這裡有一個坑在所有步驟都正確完成後,AS還是會紅線報錯
翻遍了issues,有說把
xmlns:app="http://schemas.android.com/apk/res-auto"
改成
xmlns:app="http://schemas.android.com/apk/tool"
然而並沒有軟用。
https://github.com/mikepenz/Android-Iconics/issues/174
看到了這個issue,直接添加
Iconics.init(getApplicationContext());Iconics.registerFont(new GoogleMaterial());
然後報著試一試的心態,直接運行,竟然可以!果然是我太年輕麼!!!
七、總結使用起來實在是方便,對比阿里的Iconfont。Icon質量也挺不錯。
Android-Iconics庫的地址
還有一個類似的庫Android-Iconify的庫地址 。
如你有好的文章想和大家分享歡迎投稿,直接向我投遞文章連結即可
最後,歡迎大家加入我們的知識星球,第二期開期起航火熱進行中,已有近1000人加入學習:
歡迎大家儘早加入,這期是到2019年3月10日結束,所以越早加入越好,優惠活動結束,現入圈費用由79元提至89元,以後每滿100人費用增加10元~
微信掃描或者點擊上方二維碼領取Android\Python\AI\Java等高級進階資源
更多學習資料點擊下面的「閱讀原文」獲取