Back to project page fonticon.
The source code is released under:
Apache License
If you think the Android project fonticon listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.shamanland.fonticon.example; /* w w w.j a va 2 s . co m*/ import android.app.Application; import com.shamanland.fonticon.FontIconTypefaceHolder; public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); FontIconTypefaceHolder.init(getAssets(), "icons.ttf"); } }