Here you can find the source of getTCBoldFont(Context context)
public static Typeface getTCBoldFont(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_bold = "fonts/OpenSans-CondBold.ttf"; public static Typeface getTCBoldFont(Context context) { Typeface tf = Typeface.createFromAsset(context.getAssets(), fontPath_bold);//from ww w . j a v a2 s .c o m return tf; } }