Here you can find the source of getText(TextView textView)
public static String getText(TextView textView)
//package com.java2s; import android.widget.TextView; public class Main { public static String getText(TextView textView) { return textView.getText().toString().trim(); }/* w w w.j av a 2 s . c om*/ }