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.res.AssetManager;

import android.graphics.Typeface;

import android.widget.TextView;

public class Main {
    /**
     * Sets Roboto Light font for a given text view.
     * @param textView
     * @param assetManager
     */
    public static void setRobotoLight(TextView textView, AssetManager assetManager) {
        textView.setTypeface(Typeface.createFromAsset(assetManager, "font/Roboto-Light.ttf"));
    }
}