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(); }/*from w ww. j a v a 2 s. c o m*/ }