/ Published in: Java
Iterating through cursor
Expand |
Embed | Plain Text
if (mCursor != null) { if (cur.moveToFirst()) { do { // Do stuff } while (mCursor.moveToNext()); } }
You need to login to post a comment.
Iterating through cursor
if (mCursor != null) { if (cur.moveToFirst()) { do { // Do stuff } while (mCursor.moveToNext()); } }
You need to login to post a comment.