Cursor.moveToNext - Move the cursor to the next row

Cursor.moveToNext was added in API Level 1

public abstract boolean moveToNext ()
Move the cursor to the next row. This method will return false if the cursor is already past the last entry in the result set.
Returns: whether the move succeeded.

1. Move the Cursor to the First Row. 

2. In the MainActivity.java file, in the oncCreate method,

if (myCursor.moveToNext()) {
  •     // myCursor moved to the next record
    } else {
        // myCursor cursor is already past the last entry in the result set.
    }
3. Compile and run!

Resources:
http://developer.android.com/reference/android/database/Cursor.html#moveToNext()