Android使用FontAwesome字体图标
程序员文章站
2022-03-31 16:52:23
...
1. assets引入FontAwesome资源文件
2. strings.xml 增加图标
<string name="fa_home"></string>
3. 使用图标
<TextView
android:id="@+id/tvMainIconHome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fa_home"
android:textColor="#fff"
android:textSize="24sp" />
4. 加载图标
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/fontawesome-webfont.ttf");
tvMainIconHome.setTypeface(typeface);