欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android使用FontAwesome字体图标

程序员文章站 2022-03-31 16:52:23
...

1. assets引入FontAwesome资源文件

2. strings.xml 增加图标

<string name="fa_home">&#xf015;</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);