美文网首页
简单在Android中使用FontAwesome

简单在Android中使用FontAwesome

作者: 龙城狂霸拽爷 | 来源:发表于2018-07-09 11:42 被阅读35501次

步骤1.将JitPack存储库添加到构建文件中
将其添加到存储库末尾的根build.gradle中:

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

步骤2.添加依赖项

dependencies {
        implementation 'com.github.ha-excited:fontawesome:0.1'
}

步骤 3. 使用 fontAwesome

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fontFamily="@font/fontawesome"
        android:text="@string/fa_glass" />

相关文章

网友评论

      本文标题:简单在Android中使用FontAwesome

      本文链接:https://www.haomeiwen.com/subject/vhvzuftx.html