Java tutorial
//package com.java2s; import android.app.Activity; import android.view.View; import android.widget.TextView; public class Main { public static void setText(Activity activity, int textViewId, String text) { ((TextView) activity.findViewById(textViewId)).setText(text); } public static void setText(View itemView, int textViewId, String text) { ((TextView) itemView.findViewById(textViewId)).setText(text); } }