我想检查我的表是否有记录。这是我尝试过的:
if( cursor != null ){
cursor.moveToFirst();
if (cursor.getInt(0) == 0) {
Toast.makeText(getBaseContext(), "No records yet!", Toast.LENGTH_SHORT).show();
}
}
Logcat 说:
CursorIndexOutOfBoundsException: Index 0 requested, with a size of 0
任何帮助表示赞赏。谢谢。