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 {
    /**
     * 
     * @param context
     * @param assetsPah:"fonts/xxx.ttf"
     * @return
     * usage:textView.setTypeface(typeface);
     */
    public static Typeface getTypeface(Context context, String assetsPah) {
        Typeface typeface = Typeface.createFromAsset(context.getAssets(), assetsPah);
        return typeface;
    }
}