Searched refs:title (Results 126 - 150 of 426) sorted by relevance

1234567891011>>

/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/
H A DVrActivity.java68 TextView tv = findViewById(R.id.title);
187 String title = item.getTitle().toString();
188 TextView tv = findViewById(R.id.title);
189 tv.setText(title);
190 setup.execute(title);
/frameworks/base/core/java/android/view/
H A DMenuItem.java155 * Change the title associated with this item.
157 * @param title The new text to be displayed.
160 public MenuItem setTitle(CharSequence title); argument
163 * Change the title associated with this item.
165 * Some menu types do not sufficient space to show the full title, and
166 * instead a condensed title is preferred. See {@link Menu} for more
169 * @param title The resource id of the new text to be displayed.
174 public MenuItem setTitle(@StringRes int title); argument
177 * Retrieve the current title of the item.
179 * @return The title
191 setTitleCondensed(CharSequence title) argument
[all...]
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DDeviceChooserActivity.java120 public void setTitle(CharSequence title) { argument
121 final TextView titleView = findViewById(R.id.title);
124 titleView.setText(title);
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java176 public void setTitle(CharSequence title) {} argument
224 public void setTitle(CharSequence title) { argument
225 mTitle = title;
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSlidingPaneLayoutActivity.java176 public void setTitle(CharSequence title) {} argument
224 public void setTitle(CharSequence title) { argument
225 mTitle = title;
/frameworks/support/slices/builders/src/main/java/androidx/slice/builders/impl/
H A DListBuilderBasicImpl.java250 public void setTitle(CharSequence title) { argument
256 public void setTitle(CharSequence title, boolean isLoading) { argument
329 public void setTitle(CharSequence title, boolean isLoading) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSDetailItems.java85 mEmptyText = mEmpty.findViewById(android.R.id.title);
96 FontSizeUtils.updateFontSize(item, android.R.id.title,
198 final TextView title = (TextView) view.findViewById(android.R.id.title);
199 title.setText(item.line1);
202 title.setMaxLines(twoLines ? 1 : 2);
/frameworks/support/jetifier/jetifier/processor/src/test/resources/changeDetectionTest/
H A DtestPreference.class ... android.support.v7.preference.PreferenceViewHolder) CharSequence title CharSequence summary android.support.v7.preference. ...
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/menu/
H A DMenuItemWrapperICS.java71 public MenuItem setTitle(CharSequence title) { argument
72 mWrappedObject.setTitle(title);
77 public MenuItem setTitle(int title) { argument
78 mWrappedObject.setTitle(title);
88 public MenuItem setTitleCondensed(CharSequence title) { argument
89 mWrappedObject.setTitleCondensed(title);
H A DSubMenuBuilder.java116 public SubMenu setHeaderTitle(CharSequence title) { argument
117 return (SubMenu) super.setHeaderTitleInt(title);
/frameworks/base/core/java/android/service/settings/suggestions/
H A DSuggestion.java175 * Sets suggestion title
177 public Builder setTitle(CharSequence title) { argument
178 mTitle = title;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DSubMenuBuilder.java103 public SubMenu setHeaderTitle(CharSequence title) { argument
104 return (SubMenu) super.setHeaderTitleInt(title);
H A DMenuItemImpl.java123 * @param title The text to display for the item.
126 CharSequence title, int showAsAction) {
133 mTitle = title;
422 * Gets the title for a particular {@link ItemView}
424 * @param itemView The ItemView that is receiving the title
425 * @return Either the title or condensed title based on what the ItemView
434 public MenuItem setTitle(CharSequence title) { argument
435 mTitle = title;
440 mSubMenu.setHeaderTitle(title);
125 MenuItemImpl(MenuBuilder menu, int group, int id, int categoryOrder, int ordering, CharSequence title, int showAsAction) argument
446 setTitle(int title) argument
454 setTitleCondensed(CharSequence title) argument
[all...]
/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.java61 public static final String NI_INTENT_KEY_TITLE = "title";
359 String title = getNotifTitle(notif, mContext);
363 ", title: " + title +
388 .setContentTitle(title)
413 String title = getDialogTitle(notif, mContext);
422 intent.putExtra(NI_INTENT_KEY_TITLE, title);
427 if (DEBUG) Log.d(TAG, "generateIntent, title: " + title + ", message: " + message +
576 String title
[all...]
/frameworks/base/media/java/android/media/session/
H A DISession.aidl45 void setQueueTitle(CharSequence title);
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DServiceIntentSender.java79 final String title = context.getResources().getString(
84 .setContentTitle(title)
/frameworks/support/car/src/main/java/androidx/car/drawer/
H A DCarDrawerAdapter.java39 * <p>Subclasses can optionally set the title that will be displayed when displaying the contents
40 * of the drawer via {@link #setTitle(CharSequence)}. The title can be updated at any point later
41 * on. The title of the root adapter will also be the main title showed in the toolbar when the
86 * Interface for a class that will be notified a new title has been set on this adapter.
90 * Called when {@link #setTitle(CharSequence)} has been called and the title has been
110 /** Returns the title set via {@link #setTitle(CharSequence)}. */
115 /** Updates the title to display in the toolbar for this Adapter. */
116 public final void setTitle(@Nullable CharSequence title) { argument
117 mTitle = title;
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/view/
H A DViewPagerActivity.java59 public void add(String title, int color) { argument
60 mEntries.add(new Pair<>(title, color));
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
H A DGuidedStepFragmentTest.java71 actions.add(new GuidedAction.Builder().id(1000).title("OK").build());
148 actions.add(new GuidedAction.Builder().id(1000).title("OK").build());
149 actions.add(new GuidedAction.Builder().id(1001).editable(true).title("text")
151 actions.add(new GuidedAction.Builder().id(1002).editable(true).title("text")
216 actions.add(new GuidedAction.Builder().id(1001).title("Finish activity").build());
250 actions.add(new GuidedAction.Builder().id(1001).title("Finish fragments").build());
302 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
303 subActions.add(new GuidedAction.Builder().id(2001).title("item2").build());
305 .title("list").build());
385 subActions.add(new GuidedAction.Builder().id(2000).title("item
[all...]
H A DGuidedStepSupportFragmentTest.java68 actions.add(new GuidedAction.Builder().id(1000).title("OK").build());
145 actions.add(new GuidedAction.Builder().id(1000).title("OK").build());
146 actions.add(new GuidedAction.Builder().id(1001).editable(true).title("text")
148 actions.add(new GuidedAction.Builder().id(1002).editable(true).title("text")
213 actions.add(new GuidedAction.Builder().id(1001).title("Finish activity").build());
247 actions.add(new GuidedAction.Builder().id(1001).title("Finish fragments").build());
299 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
300 subActions.add(new GuidedAction.Builder().id(2001).title("item2").build());
302 .title("list").build());
382 subActions.add(new GuidedAction.Builder().id(2000).title("item
[all...]
/frameworks/support/media/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.java75 public static void setTitle(Object builderObj, CharSequence title) { argument
76 ((MediaDescription.Builder)builderObj).setTitle(title);
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/view/
H A DViewPagerActivity.java59 public void add(String title, int color) { argument
60 mEntries.add(new Pair<>(title, color));
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DDecorToolbar.java52 void setWindowTitle(CharSequence title); argument
54 void setTitle(CharSequence title); argument

Completed in 549 milliseconds

1234567891011>>