Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 119) sorted by relevance

12345

/development/samples/MySampleRss/src/com/example/codelab/rssexample/
DRssItem.java24 public String title; field in RssItem
29 public RssItem(String url, String title){ in RssItem() argument
31 this.title = title; in RssItem()
35 return title; in toString()
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DGuidedStepActivity.java97 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { in addAction() argument
100 .title(title) in addAction()
105 private static void addAction(List<GuidedAction> actions, long id, String title, String desc, in addAction() argument
109 .title(title) in addAction()
116 long id, String title, String desc) { in addEditableAction() argument
119 .title(title) in addEditableAction()
126 private static void addEditableAction(List<GuidedAction> actions, long id, String title, in addEditableAction() argument
130 .title(title) in addEditableAction()
137 private static void addEditableAction(List<GuidedAction> actions, long id, String title, in addEditableAction() argument
141 .title(title) in addEditableAction()
[all …]
DGuidedStepSupportActivity.java99 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { in addAction() argument
102 .title(title) in addAction()
107 private static void addAction(List<GuidedAction> actions, long id, String title, String desc, in addAction() argument
111 .title(title) in addAction()
118 long id, String title, String desc) { in addEditableAction() argument
121 .title(title) in addEditableAction()
128 private static void addEditableAction(List<GuidedAction> actions, long id, String title, in addEditableAction() argument
132 .title(title) in addEditableAction()
139 private static void addEditableAction(List<GuidedAction> actions, long id, String title, in addEditableAction() argument
143 .title(title) in addEditableAction()
[all …]
DDetailsPresenterSelectionActivity.java56 private static void addAction(List<GuidedAction> actions, long id, String title, String desc) { in addAction() argument
59 .title(title) in addAction()
65 long id, String title, String desc, boolean checked) { in addCheckedAction() argument
67 .title(title) in addCheckedAction()
79 String title = getString(R.string.guidedstep_second_title); in onCreateGuidance() local
83 return new Guidance(title, description, breadcrumb, icon); in onCreateGuidance()
DPhotoItem.java25 public PhotoItem(String title, int imageResourceId) { in PhotoItem() argument
26 this(title, null, imageResourceId); in PhotoItem()
29 public PhotoItem(String title, String content, int imageResourceId) { in PhotoItem() argument
30 mTitle = title; in PhotoItem()
/development/samples/Home/src/com/example/android/home/
DApplicationInfo.java31 CharSequence title; field in ApplicationInfo
71 return title.equals(that.title) && in equals()
79 result = (title != null ? title.hashCode() : 0); in hashCode()
/development/samples/RSSReader/src/com/example/android/rssreader/
DRssItem.java34 public RssItem(CharSequence title, CharSequence link, CharSequence description) { in RssItem() argument
35 mTitle = title; in RssItem()
60 public void setTitle(CharSequence title) { in setTitle() argument
61 mTitle = title; in setTitle()
/development/samples/training/network-usage/src/com/example/android/networkusage/
DStackOverflowXmlParser.java71 public final String title; field in StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { in Entry() argument
76 this.title = title; in Entry()
87 String title = null; in readEntry() local
96 title = readTitle(parser); in readEntry()
105 return new Entry(title, summary, link); in readEntry()
111 String title = readText(parser); in readTitle() local
113 return title; in readTitle()
/development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DDataFragment.java55 public void appendItem(String title, String text) { in appendItem() argument
60 mDataItemListAdapter.add(new Event(title, text)); in appendItem()
87 holder.text1.setText(event.title); in getView()
101 String title; field in DataFragment.Event
104 public Event(String title, String text) { in Event() argument
105 this.title = title; in Event()
/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
DInputMethodSettingsFragment.java57 public void setInputMethodSettingsCategoryTitle(CharSequence title) { in setInputMethodSettingsCategoryTitle() argument
58 mSettings.setInputMethodSettingsCategoryTitle(title); in setInputMethodSettingsCategoryTitle()
73 public void setSubtypeEnablerTitle(CharSequence title) { in setSubtypeEnablerTitle() argument
74 mSettings.setSubtypeEnablerTitle(title); in setSubtypeEnablerTitle()
DInputMethodSettingsImpl.java69 final CharSequence title = getSubtypeEnablerTitle(context); in init()
73 if (!TextUtils.isEmpty(title)) { in init()
74 intent.putExtra(Intent.EXTRA_TITLE, title); in init()
128 public void setInputMethodSettingsCategoryTitle(CharSequence title) { in setInputMethodSettingsCategoryTitle() argument
130 mInputMethodSettingsCategoryTitle = title; in setInputMethodSettingsCategoryTitle()
147 public void setSubtypeEnablerTitle(CharSequence title) { in setSubtypeEnablerTitle() argument
149 mSubtypeEnablerTitle = title; in setSubtypeEnablerTitle()
DInputMethodSettingsInterface.java42 public void setInputMethodSettingsCategoryTitle(CharSequence title); in setInputMethodSettingsCategoryTitle() argument
56 public void setSubtypeEnablerTitle(CharSequence title); in setSubtypeEnablerTitle() argument
/development/samples/NotePad/src/com/example/android/notepad/
DNoteEditor.java271 String title = mCursor.getString(colTitleIndex); in onResume() local
273 String text = String.format(res.getString(R.string.title_edit), title); in onResume()
470 String title=null; in performPaste() local
499 title = orig.getString(colTitleIndex); in performPaste()
514 updateNote(text, title); in performPaste()
524 private final void updateNote(String text, String title) { in updateNote() argument
534 if (title == null) { in updateNote()
541 title = text.substring(0, Math.min(30, length)); in updateNote()
546 int lastSpace = title.lastIndexOf(' '); in updateNote()
548 title = title.substring(0, lastSpace); in updateNote()
[all …]
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
DBasicNotificationDisplayActivity.java34 String title = getIntent().getStringExtra(EXTRA_TITLE); in onCreate() local
36 ((TextView) findViewById(R.id.title)).setText(title); in onCreate()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DDialogHelperImpl.java87 public void showErrorMessageDialog(String title, Exception exception) { in showErrorMessageDialog() argument
89 bundle.putString(KEY_TITLE, title); in showErrorMessageDialog()
100 String title = args.getString(KEY_TITLE); in handleOnCreateDialog() local
102 .setTitle(title) in handleOnCreateDialog()
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
DFeedParser.java130 String title = null; in readEntry() local
144 title = readTag(parser, TAG_TITLE); in readEntry()
163 return new Entry(id, title, link, publishedOn); in readEntry()
267 public final String title; field in FeedParser.Entry
271 Entry(String id, String title, String link, long published) { in Entry() argument
273 this.title = title; in Entry()
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
DNoteEdit.java38 mTitleText = (EditText) findViewById(R.id.title); in onCreate()
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate() local
50 if (title != null) { in onCreate()
51 mTitleText.setText(title); in onCreate()
/development/samples/browseable/SlidingTabsColors/src/com.example.android.slidingtabscolors/
DContentFragment.java40 public static ContentFragment newInstance(CharSequence title, int indicatorColor, in newInstance() argument
43 bundle.putCharSequence(KEY_TITLE, title); in newInstance()
66 TextView title = (TextView) view.findViewById(R.id.item_title); in onViewCreated() local
67 title.setText("Title: " + args.getCharSequence(KEY_TITLE)); in onViewCreated()
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
DNoteEdit.java38 mTitleText = (EditText) findViewById(R.id.title); in onCreate()
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate() local
50 if (title != null) { in onCreate()
51 mTitleText.setText(title); in onCreate()
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
DFragmentAlertDialogSupport.java77 public static MyAlertDialogFragment newInstance(int title) { in newInstance() argument
80 args.putInt("title", title); in newInstance()
87 int title = getArguments().getInt("title"); in onCreateDialog() local
91 .setTitle(title) in onCreateDialog()
/development/samples/browseable/FindMyPhone/Wearable/src/com.example.android.wearable.findphone/
DFindPhoneActivity.java52 SpannableString title = new SpannableString(getString(R.string.app_name)); in onCreate() local
53 title.setSpan(new RelativeSizeSpan(0.85f), 0, title.length(), Spannable.SPAN_POINT_MARK); in onCreate()
55 .setContentTitle(title) in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DList4.java118 public SpeechView(Context context, String title, String words) { in SpeechView() argument
127 mTitle.setText(title); in SpeechView()
140 public void setTitle(String title) { in setTitle() argument
141 mTitle.setText(title); in setTitle()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DFragmentAlertDialog.java76 public static MyAlertDialogFragment newInstance(int title) { in newInstance() argument
79 args.putInt("title", title); in newInstance()
86 int title = getArguments().getInt("title"); in onCreateDialog() local
90 .setTitle(title) in onCreateDialog()
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DMusicRetriever.java115 String title; field in MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) { in Item() argument
122 this.title = title; in Item()
136 return title; in getTitle()
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
DNoteEdit.java42 mTitleText = (EditText) findViewById(R.id.title); in onCreate()
98 String title = mTitleText.getText().toString(); in saveState() local
102 long id = mDbHelper.createNote(title, body); in saveState()
107 mDbHelper.updateNote(mRowId, title, body); in saveState()

12345