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 text for a {@link TextView}.
     *
     * @param textview   text view instance
     * @return  text shown in text view
     */
    public static String getText(TextView textview) {
        return textview.getText().toString();
    }
}