Java tutorial
//package com.java2s; import android.content.Context; import android.graphics.Typeface; public class Main { private static Typeface appTypeface53; public static Typeface getTypeface53(Context context) { if (appTypeface53 == null) { appTypeface53 = Typeface.createFromAsset(context.getAssets(), "fonts/en53.otf"); } return appTypeface53; } }