Java tutorial
//package com.java2s; import android.widget.TextView; public class Main { /** * Returns the font size for a {@link TextView}. * * @param textview text view instance * @return font size in pixel */ public static float getFontSize(TextView textview) { return textview.getTextSize(); } }