EXCEPTION DETAILS: java.lang.IllegalStateException: Process 3188 Exceeded cursor quota 100, will kill it with Rom MIUI EXCEPTION DETAILS: java.lang.IllegalStateException: Process 3188 Exceeded cursor quota 100, will kill it with Rom MIUI sqlite sqlite

EXCEPTION DETAILS: java.lang.IllegalStateException: Process 3188 Exceeded cursor quota 100, will kill it with Rom MIUI


You must always close your cursors.

Use something like this:

Cursor cursor = ...;try {    if (cursor.moveToFirst())        return getThumbnailById(cr, cursor.getLong(0));    else        return null;} finally {    cursor.close();}