Java tutorial
//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; } }