Java tutorial
//package com.java2s; import android.view.View; import android.widget.EditText; public class Main { public static String getEditViewText(View view, int textId) { EditText editText = (EditText) view.findViewById(textId); return editText.getText().toString(); } }