Searched refs:subtitle (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java444 public void setSubtitle(CharSequence subtitle) { argument
445 mDecorToolbar.setSubtitle(subtitle);
1046 public void setSubtitle(CharSequence subtitle) { argument
1047 mContextView.setSubtitle(subtitle);
/frameworks/base/core/java/com/android/internal/view/
H A DFloatingActionMode.java125 public void setSubtitle(CharSequence subtitle) {} argument
/frameworks/base/core/tests/coretests/src/com/android/internal/policy/
H A DPhoneWindowActionModeTest.java331 public void setSubtitle(CharSequence subtitle) {} argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java99 * and title text with an optional subtitle. Clicking any of these elements
178 * Show the activity title and subtitle, if present.
393 * Set the action bar's subtitle. This will only be displayed if
395 * subtitle entirely.
397 * @param subtitle Subtitle to set
402 public abstract void setSubtitle(CharSequence subtitle); argument
405 * Set the action bar's subtitle. This will only be displayed if
408 * @param resId Resource ID of subtitle string to set
481 * Set whether an activity title/subtitle should be displayed.
485 * @param showTitle true to display a title/subtitle i
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java441 public void setSubtitle(CharSequence subtitle) { argument
442 mDecorToolbar.setSubtitle(subtitle);
1019 public void setSubtitle(CharSequence subtitle) { argument
1020 mContextView.setSubtitle(subtitle);
H A DToolbarActionBar.java241 public void setSubtitle(CharSequence subtitle) { argument
242 mDecorToolbar.setSubtitle(subtitle);
/frameworks/base/core/java/android/widget/
H A DToolbar.java79 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's current
80 * position in the navigation hierarchy and the content contained there. The subtitle,
82 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
257 final CharSequence subtitle = a.getText(R.styleable.Toolbar_subtitle);
258 if (!TextUtils.isEmpty(subtitle)) {
259 setSubtitle(subtitle);
614 * Return the subtitle of this toolbar.
616 * @return The current subtitle
623 * Set the subtitle of this toolbar.
634 * Set the subtitle o
640 setSubtitle(CharSequence subtitle) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java516 public void setSubtitle(CharSequence subtitle) { argument
517 mSubtitle = subtitle;
519 mSubtitleView.setText(subtitle);
520 mSubtitleView.setVisibility(subtitle != null ? VISIBLE : GONE);
564 * <p>As this encompasses the icon/logo, title and subtitle all in one, we need
580 final CharSequence subtitle = getSubtitle();
583 if (!TextUtils.isEmpty(subtitle)) {
586 title, subtitle, homeDesc);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DToolbar.java97 * <li><em>A title and subtitle.</em> The title should be a signpost for the Toolbar's current
98 * position in the navigation hierarchy and the content contained there. The subtitle,
100 * If an app uses a logo image it should strongly consider omitting a title and subtitle.</li>
273 final CharSequence subtitle = a.getText(R.styleable.Toolbar_subtitle);
274 if (!TextUtils.isEmpty(subtitle)) {
275 setSubtitle(subtitle);
631 * Return the subtitle of this toolbar.
633 * @return The current subtitle
640 * Set the subtitle of this toolbar.
651 * Set the subtitle o
657 setSubtitle(CharSequence subtitle) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActionBar.java102 * and title text with an optional subtitle. Clicking any of these elements
183 * 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...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java1981 CharSequence subtitle = null;
2005 subtitle = packageInfo.applicationInfo.loadLabel(getPackageManager());
2016 TextView subtitleView = (TextView) convertView.findViewById(R.id.subtitle);
2017 if (!TextUtils.isEmpty(subtitle)) {
2018 subtitleView.setText(subtitle);
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java2046 String subtitle = "";
2049 subtitle = titleAndSubtitle.substring(index + 1);
2059 .setContentText(subtitle)
/frameworks/base/core/java/android/view/
H A DViewGroup.java520 public void setSubtitle(CharSequence subtitle) {}

Completed in 548 milliseconds

12