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