Illegalstateexception Cursor Error
Sorry for the repeat Question.but I try to make many way doesn't work In applecation,In the first round, it can push through Activity. But back then it was a mistake. SQLiteDatabas
Solution 1:
Check the return value of
if (!mCursor.moveToFirst()) {
Log.e(TAG, "Couldn't move to first");
// do something here if move failed
}
which you are ignoring now and tells you whether the move succeeded.
Post a Comment for "Illegalstateexception Cursor Error"