Searched refs:title (Results 101 - 125 of 375) sorted by relevance

1234567891011>>

/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/wizard/
H A DWizardExample4thStepFragment.java53 .title(R.string.wizard_example_watch_now)
59 .title(R.string.wizard_example_later)
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/models/
H A DSong.java36 @SerializedName("title") private String mTitle = "";
84 public void setTitle(String title) { argument
85 mTitle = title;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java51 public MenuItem add(CharSequence title) { argument
52 return add(0, 0, 0, title);
63 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
65 groupId, itemId, 0, order, title);
100 public SubMenu addSubMenu(CharSequence title) { argument
111 CharSequence title) {
110 addSubMenu(int groupId, int itemId, int order, CharSequence title) argument
H A DMenuBuilder.java126 /** Header title for menu types that have a header (context and submenus) */
405 private MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
408 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title,
424 CharSequence title, int defaultShowAsAction) {
425 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title,
429 public MenuItem add(CharSequence title) { argument
430 return addInternal(0, 0, 0, title);
437 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
438 return addInternal(group, id, categoryOrder, title);
441 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
423 createNewMenuItem(int group, int id, int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) argument
445 addSubMenu(CharSequence title) argument
453 addSubMenu(int group, int id, int categoryOrder, CharSequence title) argument
461 addSubMenu(int group, int id, int categoryOrder, int title) argument
1128 setHeaderInternal(final int titleRes, final CharSequence title, final int iconRes, final Drawable icon, final View view) argument
1166 setHeaderTitleInt(CharSequence title) argument
[all...]
H A DIconMenuItemView.java93 * Initializes with the provided title and icon
94 * @param title The title of this item
97 void initialize(CharSequence title, Drawable icon) { argument
105 setTitle(title);
137 public void setTitle(CharSequence title) { argument
141 * Don't set the title directly since it will replace the
142 * shortcut+title being shown. Instead, re-set the shortcut caption
143 * mode so the new title is shown.
147 } else if (title !
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java54 * window manager. It provides standard UI policies such as a background, title
64 /** Flag for the "no title" feature, turning off the title at the top
76 /** Flag for having an icon on the left side of the title bar */
78 /** Flag for having an icon on the right side of the title bar */
91 /** Flag for custom title. You cannot combine this feature with other title features. */
96 * replaces the title bar and provides an alternate location
701 // Embedded screens never have a title.
773 final StringBuilder title
1375 setTitle(CharSequence title) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuBuilder.java143 * Header title for menu types that have a header (context and submenus)
440 protected MenuItem addInternal(int group, int id, int categoryOrder, CharSequence title) { argument
443 final MenuItemImpl item = createNewMenuItem(group, id, categoryOrder, ordering, title,
459 CharSequence title, int defaultShowAsAction) {
460 return new MenuItemImpl(this, group, id, categoryOrder, ordering, title,
464 public MenuItem add(CharSequence title) { argument
465 return addInternal(0, 0, 0, title);
474 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { argument
475 return addInternal(group, id, categoryOrder, title);
479 public MenuItem add(int group, int id, int categoryOrder, int title) { argument
458 createNewMenuItem(int group, int id, int categoryOrder, int ordering, CharSequence title, int defaultShowAsAction) argument
484 addSubMenu(CharSequence title) argument
494 addSubMenu(int group, int id, int categoryOrder, CharSequence title) argument
503 addSubMenu(int group, int id, int categoryOrder, int title) argument
1204 setHeaderInternal(final int titleRes, final CharSequence title, final int iconRes, final Drawable icon, final View view) argument
1242 setHeaderTitleInt(CharSequence title) argument
[all...]
H A DMenuItemWrapperICS.java72 public MenuItem setTitle(CharSequence title) { argument
73 mWrappedObject.setTitle(title);
78 public MenuItem setTitle(int title) { argument
79 mWrappedObject.setTitle(title);
89 public MenuItem setTitleCondensed(CharSequence title) { argument
90 mWrappedObject.setTitleCondensed(title);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedAction.java31 * android.support.v17.leanback.app.GuidedStepFragment}. GuidedActions contain at minimum a title
120 * The mActionFlags holds various action states such as whether title or description are
182 * Construct a clickable action with associated id and auto assign pre-defined title for the
223 * Sets the title for this action. The title is typically a short string indicating the
225 * @param title The title for this action.
227 public B title(CharSequence title) { argument
228 mTitle = title;
237 public B title(@StringRes int titleResourceId) { method in class:GuidedAction.BuilderBase
621 setTitle(CharSequence title) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java62 android:title="WiFi" />
65 android:title="WiFi settings">
68 android:title="Prefer WiFi" />
190 View titleView = childPrefScreen.findViewById(android.R.id.title);
198 // Set the title bar if title is available, else no title bar
199 final CharSequence title = getTitle();
201 if (TextUtils.isEmpty(title)) {
208 ((TextView) titleView).setText(title);
[all...]
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/
H A DVrActivity.java68 TextView tv = (TextView) findViewById(R.id.title);
187 String title = item.getTitle().toString();
188 TextView tv = (TextView) findViewById(R.id.title);
189 tv.setText(title);
190 setup.execute(title);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DSettingsDrawerAdapter.java53 category.label = dashboardCategory.title;
58 tile.label = dashboardTile.title;
113 ((TextView) convertView.findViewById(android.R.id.title)).setText(item.label);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java170 public void setTitle(CharSequence title) {} argument
218 public void setTitle(CharSequence title) { argument
219 mTitle = title;
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java170 public void setTitle(CharSequence title) {} argument
218 public void setTitle(CharSequence title) { argument
219 mTitle = title;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrandedFragment.java34 // BUNDLE attribute for title is showing
49 * title view. Default implementation uses layout file lb_browse_title.
52 * null if no title is needed.
56 * @param parent Parent of title view.
60 * {@link TitleViewAdapter.Provider}, or null for no title view.
72 * Inflate title view and add to parent. This method should be called in
76 * @param parent Parent of title view.
125 * Returns the {@link TitleViewAdapter} implemented by title view.
126 * @return The {@link TitleViewAdapter} implemented by title view.
163 * Shows or hides the title vie
219 setTitle(CharSequence title) argument
[all...]
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java462 String title = mContext.getString(R.string.bugreport_in_progress_title, info.id);
469 title = title + "\n" + watchPercentageText;
476 .setContentTitle(title)
477 .setTicker(title)
659 final String name, title, description;
932 final String subject = !TextUtils.isEmpty(info.title) ?
933 info.title : bugreportUri.getLastPathSegment();
1022 final String title = mContext.getString(R.string.bugreport_finished_title, info.id);
1027 .setContentTitle(title)
1323 updateBugreportInfo(int id, String name, String title, String description) argument
1604 String title; field in class:BugreportProgressService.BugreportInfo
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DFocusManager.java437 String title = mIndex.get(pos);
438 if (title != null && title.startsWith(searchString)) {
472 * Builds a search index for finding items by title. Queries the model and adapter, so both
482 String title = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
484 index.add(title.toLowerCase());
527 * Applies title highlights to the given view. The view must have a title field that is a
533 TextView titleView = (TextView) view.findViewById(android.R.id.title);
550 * Removes title highlight
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java81 mEmptyText = (TextView) mEmpty.findViewById(android.R.id.title);
92 FontSizeUtils.updateFontSize(item, android.R.id.title,
189 final TextView title = (TextView) view.findViewById(android.R.id.title);
190 title.setText(item.line1);
193 title.setMaxLines(twoLines ? 1 : 2);
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorToolbar.java49 void setWindowTitle(CharSequence title); argument
51 void setTitle(CharSequence title); argument
/frameworks/base/core/tests/coretests/src/android/view/menu/
H A DMenuScenario.java169 public Params setItemTitle(int itemPos, CharSequence title) { argument
170 itemTitles.put(itemPos, title);
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java60 public static final String NI_INTENT_KEY_TITLE = "title";
362 String title = getNotifTitle(notif, mContext);
366 ", title: " + title +
390 .setContentTitle(title)
415 String title = getDialogTitle(notif, mContext);
424 intent.putExtra(NI_INTENT_KEY_TITLE, title);
429 if (DEBUG) Log.d(TAG, "generateIntent, title: " + title + ", message: " + message +
578 String title
[all...]
/frameworks/base/media/java/android/media/session/
H A DISession.aidl45 void setQueueTitle(CharSequence title);
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
H A DGlifListLayoutTest.java112 View title = layout.findViewById(R.id.suw_layout_title);
113 assertNotNull("@id/suw_layout_title should not be null", title);
H A DSetupWizardListLayoutTest.java83 View title = layout.findViewById(R.id.suw_layout_title);
88 assertNotNull("@id/suw_layout_title should not be null", title);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/view/
H A DViewPagerActivity.java58 public void add(String title, int color) { argument
59 mEntries.add(new Pair(title, color));

Completed in 664 milliseconds

1234567891011>>