CalligraphyAndroid 字体类库
Calligraphy 是一个用来简化 Android 应用使用自定义字体的类库, 该类库会自动查找应用中的 TextView 并设置其使用的字体。
效果图:
使用:
添加依赖库(Download (.aar))
dependencies { compile 'uk.co.chrisjenx:calligraphy:2.1.0'}
<TextView android:text="@string/hello_world" android:layout_width="wrap_content" android:layout_height="wrap_content" fontPath="fonts/Roboto-Bold.ttf"/>
评论