Here you can find the source of extractString(EditText editText)
public static String extractString(EditText editText)
//package com.java2s; //License from project: Apache License import android.widget.EditText; public class Main { public static String extractString(EditText editText) { return editText.getText().toString(); }//from w ww. j a v a 2s . co m }