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