Android examples for Graphics:Font
Get font Typeface from ttf file
//package com.java2s; import android.content.Context; import android.graphics.Typeface; public class Main { public static Typeface getRobotoLight(Context context) { return Typeface.createFromAsset(context.getAssets(), "robotolight.ttf"); }// w w w. j a v a 2s . c om }