Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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