Java tutorial
//package com.java2s; //License from project: Apache License import android.widget.TextView; public class Main { /***************************************************** * ---------------- * Textview * -------------------- * * * ****************************************************/ public static boolean setText(TextView textView, String text, boolean set) { if (set) setText(textView, text); return set; } public static void setText(TextView textView, String text) { if (textView != null) textView.setText(text); } }