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

12

/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/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/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/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/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java84 CharSequence subtitle = String.valueOf(System.currentTimeMillis());
91 .setContentText(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/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/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/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java61 public void setSubtitle(CharSequence subtitle) { argument
62 mContextView.setSubtitle(subtitle);
/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/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 DFrameworkActionBar.java122 protected void setSubtitle(CharSequence subtitle) { argument
123 mActionBar.setSubTitle(subtitle);
H A DBridgeActionBar.java114 /** Setup things like the title, subtitle, icon etc. */
123 protected abstract void setSubtitle(CharSequence subtitle); argument
/frameworks/base/core/java/com/android/internal/widget/
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);
H A DDecorToolbar.java53 void setSubtitle(CharSequence subtitle); argument
H A DActionBarContextView.java161 public void setSubtitle(CharSequence subtitle) { argument
162 mSubtitle = subtitle;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DToolbarWidgetWrapper.java114 final CharSequence subtitle = a.getText(R.styleable.ActionBar_subtitle);
115 if (!TextUtils.isEmpty(subtitle)) {
116 setSubtitle(subtitle);
296 public void setSubtitle(CharSequence subtitle) { argument
297 mSubtitle = subtitle;
299 mToolbar.setSubtitle(subtitle);
H A DDecorToolbar.java51 void setSubtitle(CharSequence subtitle); argument
H A DActionBarContextView.java118 public void setSubtitle(CharSequence subtitle) { argument
119 mSubtitle = subtitle;
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java221 mSubtitleView = (TextView) findViewById(R.id.subtitle);
353 CharSequence subtitle = mDescription == null ? null : mDescription.getSubtitle();
354 boolean hasSubtitle = !TextUtils.isEmpty(subtitle);
365 mSubtitleView.setText(subtitle);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java541 CharSequence subtitle = null;
548 subtitle = packageInfo.applicationInfo.loadLabel(pm);
557 TextView subtitleView = (TextView) convertView.findViewById(R.id.subtitle);
558 if (!TextUtils.isEmpty(subtitle)) {
559 subtitleView.setText(subtitle);
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java236 public void setSubtitle(CharSequence subtitle) { argument
237 mDecorToolbar.setSubtitle(subtitle);

Completed in 2461 milliseconds

12