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