Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.Activity;

import android.widget.TextView;

public class Main {
    public static TextView get_TextView(Activity activity, int what) {
        TextView ans = (TextView) activity.findViewById(what);
        return ans;
    }
}