/ Published in: Java
Iterating through cursor
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
if (mCursor != null) { if (cur.moveToFirst()) { do { // Do stuff } while (mCursor.moveToNext()); } }