一個好玩的自定義字體庫

alt tag

EasyFonts

Android Arsenal License

A simple and useful android library to use custom fonts in android apps without adding fonts into asset/resource folder.Also by using this library developer should not have to worry about Typeface object creation for every new font that he use.

EasyFonts will handle all this for you.

Type of fonts available:

alt tag

Getting Started

Installation

Add gradle dependency with command:

dependencies {
        compile 'com.vstechlab.easyfonts:easyfonts:1.0.0'
    }

for Maven:

repositories {
    maven {
        url 'https://dl.bintray.com/vsvankhede/maven/'
    }
}
dependencies {
        compile 'com.vstechlab.easyfonts:easyfonts:1.0.0'
    }

Usage

You can set number of font face provided by EasyFont to your TextView by passing EasyFonts.yourFont(Context context)to setTypeface().

TextView tv_hello = (TextView) findViewById(R.id.tv_hello);
tv_hello.setTypeface(EasyFonts.robotoThin(this));

You can also check sample project created in app directory.

項目地址:https://github.com/vsvankhede/easyfonts

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章