Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;

import android.widget.TextView;

public class Main {
    private static TextView createTextView(Context context, String text) {
        TextView textView = new TextView(context);
        textView.setText(text);

        return textView;
    }
}