Searched defs:subtitle (Results 1 - 25 of 32) sorted by relevance

12

/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/opt/photoviewer/src/com/android/ex/photo/
H A DActionBarInterface.java40 public void setSubtitle(@Nullable CharSequence subtitle); argument
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp41 * Text of subtitle (one or more lines)
114 AString subtitle; member in class:android::test::TimedTextSRTSourceTest
123 subtitle = AStringPrintf("%d\n\n", i);
124 CheckDataEquals(parcel, subtitle.c_str());
130 subtitle = AStringPrintf("6\n\n");
131 CheckDataEquals(parcel, subtitle.c_str());
136 subtitle = AStringPrintf("7\n\n");
137 CheckDataEquals(parcel, subtitle.c_str());
142 subtitle = AStringPrintf("8\n\n");
143 CheckDataEquals(parcel, subtitle
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java121 protected void setSubtitle(CharSequence subtitle) { argument
122 if (subtitle != null && mWindowDecorActionBar != null) {
124 invoke(setSubtitle, mWindowDecorActionBar, subtitle);
H A DBridgeActionBar.java114 /** Setup things like the title, subtitle, icon etc. */
123 protected abstract void setSubtitle(CharSequence subtitle); argument
H A DFrameworkActionBar.java122 protected void setSubtitle(CharSequence subtitle) { argument
123 mActionBar.setSubTitle(subtitle);
/frameworks/support/v4/api21/android/support/v4/media/
H A DMediaDescriptionCompatApi21.java76 public static void setSubtitle(Object builderObj, CharSequence subtitle) { argument
77 ((MediaDescription.Builder)builderObj).setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/view/
H A DActionMode.java93 * Set the subtitle of the action mode. This method will have no visible effect if
96 * @param subtitle Subtitle string to set
101 public abstract void setSubtitle(CharSequence subtitle); argument
104 * Set the subtitle of the action mode. This method will have no visible effect if
107 * @param resId Resource ID of a string to set as the subtitle
115 * Set whether or not the title/subtitle display for this action mode
135 * title/subtitle display to be optional.
145 * @return true if this action mode considers the title and subtitle fields
154 * the title and subtitle. Useful for things like search boxes.
156 * @param view Custom view to use in place of the title/subtitle
[all...]
/frameworks/base/core/java/android/view/
H A DActionMode.java108 * Set the subtitle of the action mode. This method will have no visible effect if
111 * @param subtitle Subtitle string to set
116 public abstract void setSubtitle(CharSequence subtitle); argument
119 * Set the subtitle of the action mode. This method will have no visible effect if
122 * @param resId Resource ID of a string to set as the subtitle
130 * Set whether or not the title/subtitle display for this action mode
150 * title/subtitle display to be optional.
160 * @return true if this action mode considers the title and subtitle fields
169 * the title and subtitle. Useful for things like search boxes.
171 * @param view Custom view to use in place of the title/subtitle
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java61 public void setSubtitle(CharSequence subtitle) { argument
62 mContextView.setSubtitle(subtitle);
H A DFloatingActionMode.java125 public void setSubtitle(CharSequence subtitle) {} argument
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java161 public void setSubtitle(CharSequence subtitle) { argument
162 mSubtitle = subtitle;
H A DDecorToolbar.java53 void setSubtitle(CharSequence subtitle); argument
H A DToolbarWidgetWrapper.java111 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle);
112 if (!TextUtils.isEmpty(subtitle)) {
113 setSubtitle(subtitle);
272 public void setSubtitle(CharSequence subtitle) { argument
273 mSubtitle = subtitle;
275 mToolbar.setSubtitle(subtitle);
/frameworks/base/media/java/android/media/
H A DMediaDescription.java25 * A subtitle suitable for display or null.
49 private MediaDescription(String mediaId, CharSequence title, CharSequence subtitle, argument
53 mSubtitle = subtitle;
90 * Returns a subtitle suitable for display or null.
92 * @return A subtitle or null.
220 * Sets the subtitle.
222 * @param subtitle A subtitle suitable for display to the user or null.
225 public Builder setSubtitle(@Nullable CharSequence subtitle) { argument
226 mSubtitle = subtitle;
[all...]
/frameworks/support/v4/java/android/support/v4/media/
H A DMediaDescriptionCompat.java42 * A subtitle suitable for display or null.
71 private MediaDescriptionCompat(String mediaId, CharSequence title, CharSequence subtitle, argument
75 mSubtitle = subtitle;
114 * Returns a subtitle suitable for display or null.
116 * @return A subtitle or null.
322 * Sets the subtitle.
324 * @param subtitle A subtitle suitable for display to the user or null.
327 public Builder setSubtitle(@Nullable CharSequence subtitle) { argument
328 mSubtitle = subtitle;
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DStandaloneActionMode.java64 public void setSubtitle(CharSequence subtitle) { argument
65 mContextView.setSubtitle(subtitle);
H A DSupportActionModeWrapper.java67 public void setSubtitle(CharSequence subtitle) { argument
68 mWrappedObject.setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java118 public void setSubtitle(CharSequence subtitle) { argument
119 mSubtitle = subtitle;
H A DDecorToolbar.java51 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/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/core/java/com/android/internal/app/
H A DToolbarActionBar.java236 public void setSubtitle(CharSequence subtitle) { argument
237 mDecorToolbar.setSubtitle(subtitle);
/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...]

Completed in 1220 milliseconds

12