Android examples for android.widget:ListView
is ListView Empty
import android.widget.ListView; public class Main{ public static final boolean isEmpty(ListView listView) { if (listView == null) { return false; }/*w ww . j ava2 s .c om*/ return listView.getCount() == 0; } }