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 appTypeface35;

    public static Typeface getTypeface35(Context context) {

        if (appTypeface35 == null) {
            appTypeface35 = Typeface.createFromAsset(context.getAssets(), "fonts/en35.otf");
        }
        return appTypeface35;
    }
}