Java tutorial
//package com.java2s; import android.view.View; import android.widget.TextView; public class Main { public static void setText(View view, int id, String text) { TextView textView = findViewById(view, id); textView.setText(text); } public static <T> T findViewById(View view, int id) { return (T) view.findViewById(id); } }