Home
last modified time | relevance | path

Searched refs:mRowId (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/docs/html/training/notepad/
Dnotepad-ex3.jd43 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>.
[all …]
Dnotepad-ex2.jd175 <code>mRowId</code> of the item that was clicked. In this instance we can
177 could be), and we ignore the <code>mRowId</code> as well. All we are
185 to pass in the title and body text, and the <code>mRowId</code> for the note we are
204 using the Bundle to pass in the title, body and mRowId of the note we want to edit.
262 Long mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);
263 if (mRowId != null) {
266 mDbHelper.updateNote(mRowId, editTitle, editBody);
282 In the case of an edit, we pull the mRowId as well, and use that to update
388 Then we will grab and store the <code>mRowId</code> so we can keep
413 <li>At the top of the class, declare a <code>Long mRowId</code> private field to store
[all …]
/frameworks/base/media/java/android/media/
DMediaScanner.java355 long mRowId; field in MediaScanner.FileEntry
362 mRowId = rowId; in FileEntry()
371 return mPath + " mRowId: " + mRowId; in toString()
536 entry.mRowId = 0;
841 long rowId = entry.mRowId;
968 entry.mRowId = rowId;
1790 long rowId = entry.mRowId;