Java tutorial
//package com.java2s; import android.widget.TextView; public class Main { /** * Sets the font size for a {@link TextView}. * * @param textview text view instance * @param size font size in pixel */ public static void setFontSize(TextView textview, float size) { textview.setTextSize(size); textview.requestLayout(); } }