Java tutorial
//package com.java2s; import android.widget.TextView; public class Main { public static boolean isEmptyTextView(TextView tv) { if (tv == null) { return true; } if ("".equals(tv.getText().toString())) { return true; } else { return false; } } }