Lines Matching refs:mRowId
43 NoteEdit Activity is a <code>mRowId</code> (but only if we are editing, if creating we pass
75 <code>mRowId</code>, in case the note
80 Replace the code that currently initializes the <code>mRowId</code>:<br>
82 mRowId = null;
86 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
91 mRowId = (savedInstanceState == null) ? null :
93 if (mRowId == null) {
95 mRowId = extras != null ? extras.getLong(NotesDbAdapter.KEY_ROWID)
102 <code>mRowId</code> from the <code>extras</code> Bundle if it is not
109 so can not be used to represent the case when <code>mRowId</code> is <code>null</code>.
115 <p>Next, we need to populate the fields based on the <code>mRowId</code> if we
150 mRowId = (savedInstanceState == null) ? null :
152 if (mRowId == null) {
154 mRowId = extras != null ? extras.getLong(NotesDbAdapter.KEY_ROWID)
174 if (mRowId != null) {
175 Cursor note = mDbHelper.fetchNote(mRowId);
250 outState.putSerializable(NotesDbAdapter.KEY_ROWID, mRowId);
288 if (mRowId == null) {
291 mRowId = id;
294 mDbHelper.updateNote(mRowId, title, body);
298 returned, we store it in the <code>mRowId</code> field so that we can update the note in future
326 only the <code>mRowId</code> is):</p>