Searched refs:subtitle (Results 1 - 25 of 44) sorted by last modified time

12

/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlaybackBaseControlGlue.java453 * Sets the media subtitle. The subtitle will be rendered by default description presenter
455 * @param subtitle Subtitle to set.
457 public void setSubtitle(CharSequence subtitle) { argument
458 if (TextUtils.equals(subtitle, mSubtitle)) {
461 mSubtitle = subtitle;
468 * Return The media subtitle.
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java101 * and title text with an optional subtitle. Clicking any of these elements
184 * Show the activity title and subtitle, if present.
403 * Set the action bar's subtitle. This will only be displayed if
405 * subtitle entirely.
407 * @param subtitle Subtitle to set
412 public abstract void setSubtitle(CharSequence subtitle); argument
415 * Set the action bar's subtitle. This will only be displayed if
418 * @param resId Resource ID of subtitle string to set
491 * Set whether an activity title/subtitle should be displayed.
495 * @param showTitle true to display a title/subtitle i
[all...]
H A DToolbarActionBar.java243 public void setSubtitle(CharSequence subtitle) { argument
244 mDecorToolbar.setSubtitle(subtitle);
H A DWindowDecorActionBar.java459 public void setSubtitle(CharSequence subtitle) { argument
460 mDecorToolbar.setSubtitle(subtitle);
1074 public void setSubtitle(CharSequence subtitle) { argument
1075 mContextView.setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java96 * Set the subtitle of the action mode. This method will have no visible effect if
99 * @param subtitle Subtitle string to set
104 public abstract void setSubtitle(CharSequence subtitle); argument
107 * Set the subtitle of the action mode. This method will have no visible effect if
110 * @param resId Resource ID of a string to set as the subtitle
118 * Set whether or not the title/subtitle display for this action mode
138 * title/subtitle display to be optional.
148 * @return true if this action mode considers the title and subtitle fields
157 * the title and subtitle. Useful for things like search boxes.
159 * @param view Custom view to use in place of the title/subtitle
[all...]
H A DStandaloneActionMode.java66 public void setSubtitle(CharSequence subtitle) { argument
67 mContextView.setSubtitle(subtitle);
H A DSupportActionModeWrapper.java68 public void setSubtitle(CharSequence subtitle) { argument
69 mWrappedObject.setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarContextView.java119 public void setSubtitle(CharSequence subtitle) { argument
120 mSubtitle = subtitle;
H A DDecorToolbar.java55 void setSubtitle(CharSequence subtitle); argument
H A DToolbar.java89 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's current
90 * position in the navigation hierarchy and the content contained there. The subtitle,
92 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
305 final CharSequence subtitle = a.getText(R.styleable.Toolbar_subtitle);
306 if (!TextUtils.isEmpty(subtitle)) {
307 setSubtitle(subtitle);
777 * Return the subtitle of this toolbar.
779 * @return The current subtitle
786 * Set the subtitle of this toolbar.
797 * Set the subtitle o
803 setSubtitle(CharSequence subtitle) argument
[all...]
H A DToolbarWidgetWrapper.java115 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle);
116 if (!TextUtils.isEmpty(subtitle)) {
117 setSubtitle(subtitle);
271 public void setSubtitle(CharSequence subtitle) { argument
272 mSubtitle = subtitle;
274 mToolbar.setSubtitle(subtitle);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java370 // Start the session activity when a content item (album art, title or subtitle) is clicked.
982 CharSequence subtitle = mDescription == null ? null : mDescription.getSubtitle();
983 boolean hasSubtitle = !TextUtils.isEmpty(subtitle);
1005 mSubtitleView.setText(subtitle);
/frameworks/support/design/tests/src/android/support/design/widget/
H A DCustomSnackbar.java39 /** Sets the subtitle of this custom snackbar. */
40 public CustomSnackbar setSubtitle(String subtitle) { argument
42 subtitleView.setText(subtitle);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DListViewActivity.java64 TextView subtitle = (TextView) view.findViewById(R.id.subtitle);
66 subtitle.setText("Subtitle for #" + i);
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DCustomSnackbar.java42 /** Sets the subtitle of this custom snackbar. */
43 public CustomSnackbar setSubtitle(String subtitle) { argument
45 subtitleView.setText(subtitle);
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.java78 public static void setSubtitle(Object builderObj, CharSequence subtitle) { argument
79 ((MediaDescription.Builder)builderObj).setSubtitle(subtitle);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaDescriptionCompat.java158 * A subtitle suitable for display or null.
187 MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle, argument
191 mSubtitle = subtitle;
230 * Returns a subtitle suitable for display or null.
232 * @return A subtitle or null.
470 * Sets the subtitle.
472 * @param subtitle A subtitle suitable for display to the user or null.
475 public Builder setSubtitle(@Nullable CharSequence subtitle) { argument
476 mSubtitle = subtitle;
[all...]
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DListViewActivity.java64 TextView subtitle = (TextView) view.findViewById(R.id.subtitle);
66 subtitle.setText("Subtitle for #" + i);
/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DCustomSnackbar.java42 /** Sets the subtitle of this custom snackbar. */
43 public CustomSnackbar setSubtitle(String subtitle) { argument
45 subtitleView.setText(subtitle);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java40 public void setSubtitle(@Nullable CharSequence subtitle); argument
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
H A DActionBarWrapper.java57 public void setSubtitle(CharSequence subtitle) { argument
58 mActionBar.setSubtitle(subtitle);
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
H A DActionBarWrapper.java58 public void setSubtitle(CharSequence subtitle) { argument
59 mActionBar.setSubtitle(subtitle);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java137 protected void setSubtitle(CharSequence subtitle) { argument
138 if (subtitle != null && mWindowDecorActionBar != null) {
140 invoke(setSubtitle, mWindowDecorActionBar, subtitle);
H A DBridgeActionBar.java121 /** Setup things like the title, subtitle, icon etc. */
130 protected abstract void setSubtitle(CharSequence subtitle); argument
H A DFrameworkActionBar.java122 protected void setSubtitle(CharSequence subtitle) { argument
123 mActionBar.setSubTitle(subtitle);

Completed in 429 milliseconds

12