Iterating through cursor


/ Published in: Java
Save to your folder(s)

Iterating through cursor


Copy this code and paste it in your HTML
  1. if (mCursor != null) {
  2. if (cur.moveToFirst()) {
  3. do {
  4. // Do stuff
  5. } while (mCursor.moveToNext());
  6. }
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.