Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
    }
}