Home
last modified time | relevance | path

Searched refs:KEY_TITLE (Results 1 – 22 of 22) sorted by relevance

/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
DNotepadv3.java59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData()
119 i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString( in onListItemClick()
120 c.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE))); in onListItemClick()
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
DNoteEdit.java46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate()
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString()); in onCreate()
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
DNotepadv1.java70 String[] from = new String[] { NotesDbAdapter.KEY_TITLE }; in fillData()
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
DNotepadv2.java57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData()
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
DNoteEdit.java72 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE))); in populateFields()
DNotepadv3.java57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData()
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
DNotesDbAdapter.java39 public static final String KEY_TITLE = "title"; field in NotesDbAdapter
122 initialValues.put(KEY_TITLE, title); in createNote()
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE, in fetchAllNotes()
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null, in fetchNote()
183 args.put(KEY_TITLE, title); in updateNote()
DNotepadv2.java59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE}; in fillData()
119 i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString( in onListItemClick()
120 c.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE))); in onListItemClick()
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
DNoteEdit.java46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate()
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString()); in onCreate()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DDialogHelperImpl.java73 private static final String KEY_TITLE = "title"; field in DialogHelperImpl
89 bundle.putString(KEY_TITLE, title); in showErrorMessageDialog()
100 String title = args.getString(KEY_TITLE); in handleOnCreateDialog()
/development/samples/browseable/SlidingTabsColors/src/com.example.android.slidingtabscolors/
DContentFragment.java32 private static final String KEY_TITLE = "title"; field in ContentFragment
43 bundle.putCharSequence(KEY_TITLE, title); in newInstance()
67 title.setText("Title: " + args.getCharSequence(KEY_TITLE)); in onViewCreated()
/development/samples/browseable/SynchronizedNotifications/Shared/src/com.example.android.wearable.synchronizednotifications.common/
DConstants.java32 public static final String KEY_TITLE = "title"; field in Constants
/development/samples/browseable/SkeletonWearableApp/Wearable/src/com.example.android.google.wearable.app/
DGridExampleActivity.java108 args.putString(CardFragment.KEY_TITLE, "Row:" + rowNum); in newInstance()
/development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/
DSynchronizedNotificationsFragment.java128 putDataMapRequest.getDataMap().putString(Constants.KEY_TITLE, title); in buildWearableOnlyNotification()
/development/samples/browseable/SynchronizedNotifications/Wearable/src/com.example.android.wearable.synchronizednotifications/
DNotificationUpdateService.java97 String title = dataMap.getString(Constants.KEY_TITLE); in onDataChanged()
/development/ndk/platforms/android-3/include/linux/
Dinput.h428 #define KEY_TITLE 0x171 macro
/development/ndk/platforms/android-L/include/linux/
Dinput.h540 #define KEY_TITLE 0x171 macro