问题 The application has a SearchView which fetches suggestions from a specific database table. Everything worked without any errors until Android 5.0 appeared. As of then, when the SQLiteQueryBuilder queries the database to fill the Cursor object, the return is empty cursor. Not NULL , but empty. On other platforms, I can output the Cursor 's content via DatabaseUtils.dumpCursorToString(cursorObject) , but on Android 5.0+ the method reports output on null objects Dumping cursor null <<<<< Even