HomeSort by relevance Sort by last modified time
    Searched refs:mNotesCursor (Results 1 - 3 of 3) sorted by null

  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 39 private Cursor mNotesCursor;
53 mNotesCursor = mDbHelper.fetchAllNotes();
54 startManagingCursor(mNotesCursor);
64 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java 40 private Cursor mNotesCursor;
55 mNotesCursor = mDbHelper.fetchAllNotes();
56 startManagingCursor(mNotesCursor);
66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
115 Cursor c = mNotesCursor;
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 40 private Cursor mNotesCursor;
55 mNotesCursor = mDbHelper.fetchAllNotes();
56 startManagingCursor(mNotesCursor);
66 new SimpleCursorAdapter(this, R.layout.notes_row, mNotesCursor, from, to);
115 Cursor c = mNotesCursor;

Completed in 349 milliseconds