Home
last modified time | relevance | path

Searched refs:body (Results 1 – 25 of 117) sorted by relevance

12345

/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
DNoteEdit.java39 mBodyText = (EditText) findViewById(R.id.body); in onCreate()
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onCreate() local
53 if (body != null) { in onCreate()
54 mBodyText.setText(body); in onCreate()
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
DNoteEdit.java39 mBodyText = (EditText) findViewById(R.id.body); in onCreate()
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onCreate() local
53 if (body != null) { in onCreate()
54 mBodyText.setText(body); in onCreate()
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
DNoteEdit.java43 mBodyText = (EditText) findViewById(R.id.body); in onCreate()
99 String body = mBodyText.getText().toString(); in saveState() local
102 long id = mDbHelper.createNote(title, body); in saveState()
107 mDbHelper.updateNote(mRowId, title, body); in saveState()
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
DNotesDbAdapter.java120 public long createNote(String title, String body) { in createNote() argument
123 initialValues.put(KEY_BODY, body); in createNote()
181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument
184 args.put(KEY_BODY, body); in updateNote()
/development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/sms/
DSmsTest.java57 String body = c.getString(c.getColumnIndexOrThrow("body")); in testReceivedSms() local
62 assertEquals(BODY, body); in testReceivedSms()
/development/samples/browseable/RevealEffectBasic/
D_index.jd3 @jd:body
/development/samples/browseable/CustomNotifications/
D_index.jd3 @jd:body
/development/samples/browseable/ClippingBasic/
D_index.jd3 @jd:body
/development/samples/browseable/MediaRouter/
D_index.jd3 @jd:body
/development/samples/browseable/GridViewPager/
D_index.jd3 @jd:body
/development/samples/browseable/Camera2Video/
D_index.jd3 @jd:body
/development/samples/browseable/CustomTransition/
D_index.jd3 @jd:body
/development/samples/browseable/WatchViewStub/
D_index.jd3 @jd:body
/development/samples/browseable/JumpingJack/
D_index.jd3 @jd:body
/development/samples/browseable/FragmentTransition/
D_index.jd3 @jd:body
/development/samples/browseable/StorageProvider/
D_index.jd3 @jd:body
/development/samples/browseable/EmbeddedApp/
D_index.jd3 @jd:body
/development/samples/browseable/PdfRendererBasic/
D_index.jd3 @jd:body
/development/samples/browseable/SynchronizedNotifications/
D_index.jd3 @jd:body
/development/samples/browseable/DocumentCentricRelinquishIdentity/
D_index.jd3 @jd:body

12345