Java tutorial
//package com.java2s; //License from project: Open Source License import android.database.Cursor; public class Main { public static boolean isCursorEmpty(Cursor cursor) { return cursor == null || cursor.getCount() == 0; } }