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