OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KEY_BODY
(Results
1 - 11
of
11
) sorted by null
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
Notepadv2.java
121
i.putExtra(NotesDbAdapter.
KEY_BODY
, c.getString(
122
c.getColumnIndexOrThrow(NotesDbAdapter.
KEY_BODY
)));
133
String body = extras.getString(NotesDbAdapter.
KEY_BODY
);
141
String editBody = extras.getString(NotesDbAdapter.
KEY_BODY
);
NoteEdit.java
47
String body = extras.getString(NotesDbAdapter.
KEY_BODY
);
64
bundle.putString(NotesDbAdapter.
KEY_BODY
, mBodyText.getText().toString());
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
Notepadv3.java
121
i.putExtra(NotesDbAdapter.
KEY_BODY
, c.getString(
122
c.getColumnIndexOrThrow(NotesDbAdapter.
KEY_BODY
)));
133
String body = extras.getString(NotesDbAdapter.
KEY_BODY
);
141
String editBody = extras.getString(NotesDbAdapter.
KEY_BODY
);
NoteEdit.java
47
String body = extras.getString(NotesDbAdapter.
KEY_BODY
);
64
bundle.putString(NotesDbAdapter.
KEY_BODY
, mBodyText.getText().toString());
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java
40
public static final String
KEY_BODY
= "body";
123
initialValues.put(
KEY_BODY
, body);
147
KEY_BODY
}, null, null, null, null, null);
162
KEY_TITLE,
KEY_BODY
}, KEY_ROWID + "=" + rowId, null,
184
args.put(
KEY_BODY
, body);
NoteEdit.java
74
note.getColumnIndexOrThrow(NotesDbAdapter.
KEY_BODY
)));
Completed in 95 milliseconds