Android examples for User Interface:TextView
set Font Typeface to TextView
//package com.java2s; import android.graphics.Typeface; import android.widget.TextView; public class Main { public static void setFontTypeface(TextView textView, Typeface typeface) { textView.setTypeface(typeface);/*from w w w . j a v a 2 s . c o m*/ } }