Back to project page Android-Iconics.
The source code is released under:
Apache License
If you think the Android project Android-Iconics 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.mikepenz.iconics.sample; //from w w w . j a v a 2 s.c o m import android.app.Application; import com.mikepenz.google_material_typeface_library.GoogleMaterial; import com.mikepenz.iconics.Iconics; import com.mikepenz.iconics.sample.typeface.CustomFont; import com.mikepenz.meteocons_typeface_library.Meteoconcs; public class CustomApplication extends Application { @Override public void onCreate() { super.onCreate(); Iconics.registerFont(new Meteoconcs()); Iconics.registerFont(new GoogleMaterial()); Iconics.registerFont(new CustomFont()); } }