Android examples for User Interface:TextView Value
set Text In View
//package com.java2s; import android.app.Activity; import android.widget.TextView; public class Main { public static void setTextInView(int viewId, String val, Activity activity) {/* www . j a va 2s. c o m*/ TextView textView = (TextView) activity.findViewById(viewId); if (textView != null) textView.setText(val); } }