Java tutorial
//package com.java2s; import android.view.View; import android.widget.TextView; public class Main { public static TextView setText(View parent, int textViewId, CharSequence text) { TextView textView = (TextView) parent.findViewById(textViewId); textView.setText(text); return textView; } }