Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;
import android.graphics.Typeface;
import android.widget.TextView;

public class Main {
    private static Typeface font = null;

    public static void setFontFace(TextView v, Context context) {
        if (font == null)
            font = Typeface.createFromAsset(context.getAssets(), "fontawesome-webfont.ttf");
        v.setTypeface(font);
    }
}