Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}