テーブルにレコードがあるかどうかを確認したいのですが。これが私が試したことです:
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
どんな助けでも大歓迎です。ありがとう。