Here you can find the source of getFAFont(Context context)
public static Typeface getFAFont(Context context)
//package com.java2s; //License from project: Apache License import android.content.Context; import android.graphics.Typeface; public class Main { private static String font_awesome = "fonts/fontawesome-webfont.ttf"; public static Typeface getFAFont(Context context) { Typeface tf = Typeface.createFromAsset(context.getAssets(), font_awesome);//w w w . j a va 2s.c o m return tf; } }