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

/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 = StringPrintf("%d\n\n", i);
124 CheckDataEquals(parcel, subtitle.c_str());
130 subtitle = StringPrintf("6\n\n");
131 CheckDataEquals(parcel, subtitle.c_str());
136 subtitle = StringPrintf("7\n\n");
137 CheckDataEquals(parcel, subtitle.c_str());
142 subtitle = StringPrintf("8\n\n");
143 CheckDataEquals(parcel, subtitle
[all...]
/frameworks/base/core/java/android/view/
H A DActionMode.java86 * Set the subtitle of the action mode. This method will have no visible effect if
89 * @param subtitle Subtitle string to set
94 public abstract void setSubtitle(CharSequence subtitle); argument
97 * Set the subtitle of the action mode. This method will have no visible effect if
100 * @param resId Resource ID of a string to set as the subtitle
108 * Set whether or not the title/subtitle display for this action mode
128 * title/subtitle display to be optional.
138 * @return true if this action mode considers the title and subtitle fields
147 * the title and subtitle. Useful for things like search boxes.
149 * @param view Custom view to use in place of the title/subtitle
[all...]
/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 a custom view
99 * @param subtitle Subtitle string to set
103 public abstract void setSubtitle(CharSequence subtitle); argument
106 * Set the subtitle of the action mode. This method will have no visible effect if a custom view
109 * @param resId Resource ID of a string to set as the subtitle
116 * Set whether or not the title/subtitle display for this action mode is optional.
133 * @return true if this action mode has been given a hint to consider the title/subtitle display
143 * @return true if this action mode considers the title and subtitle fields as optional.
152 * subtitle. Useful for things like search boxes.
154 * @param view Custom view to use in place of the title/subtitle
[all...]
/frameworks/base/core/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java87 CharSequence subtitle = String.valueOf(System.currentTimeMillis());
88 notification.setLatestEventInfo(mContext, title, subtitle, pendingIntent);
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java60 public void setSubtitle(CharSequence subtitle) { argument
61 mContextView.setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DActionModeWrapper.java70 public void setSubtitle(CharSequence subtitle) { argument
71 mWrappedObject.setSubtitle(subtitle);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DSelectPrinterFragment.java536 CharSequence subtitle = null;
545 subtitle = packageInfo.applicationInfo.loadLabel(pm);
554 TextView subtitleView = (TextView) convertView.findViewById(R.id.subtitle);
555 if (!TextUtils.isEmpty(subtitle)) {
556 subtitleView.setText(subtitle);
H A DPrintJobConfigActivity.java2392 TextView titleView = (TextView) itemView.findViewById(R.id.subtitle);
2398 String subtitle = getString(R.string.printer_unavailable, service.toString());
2399 titleView.setText(subtitle);
2521 CharSequence subtitle = null;
2543 subtitle = packageInfo.applicationInfo.loadLabel(getPackageManager());
2554 TextView subtitleView = (TextView) convertView.findViewById(R.id.subtitle);
2555 if (!TextUtils.isEmpty(subtitle)) {
2556 subtitleView.setText(subtitle);
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java117 public void setSubtitle(CharSequence subtitle) { argument
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarImplICS.java143 public void setSubtitle(CharSequence subtitle) { argument
144 mActionBar.setSubtitle(subtitle);
H A DActionBar.java74 * subtitle. Clicking any of these elements will dispatch onOptionsItemSelected to the host
125 * Show the activity title and subtitle, if present.
301 * Set the action bar's subtitle. This will only be displayed if {@link #DISPLAY_SHOW_TITLE} is
302 * set. Set to null to disable the subtitle entirely.
304 * @param subtitle Subtitle to set
308 public abstract void setSubtitle(CharSequence subtitle); argument
311 * Set the action bar's subtitle. This will only be displayed if {@link #DISPLAY_SHOW_TITLE} is
314 * @param resId Resource ID of subtitle string to set
383 * Set whether an activity title/subtitle should be displayed.
387 * @param showTitle true to display a title/subtitle i
[all...]
H A DActionBarImplBase.java274 public void setSubtitle(CharSequence subtitle) { argument
275 mActionView.setSubtitle(subtitle);
808 public void setSubtitle(CharSequence subtitle) { argument
809 mContextView.setSubtitle(subtitle);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java153 public void setSubtitle(CharSequence subtitle) { argument
154 mSubtitle = subtitle;
H A DActionBarView.java544 public void setSubtitle(CharSequence subtitle) { argument
545 mSubtitle = subtitle;
547 mSubtitleView.setText(subtitle);
548 mSubtitleView.setVisibility(subtitle != null ? VISIBLE : GONE);
/frameworks/base/core/java/android/app/
H A DActionBar.java62 * and title text with an optional subtitle. Clicking any of these elements
115 * Show the activity title and subtitle, if present.
315 * Set the action bar's subtitle. This will only be displayed if
317 * subtitle entirely.
319 * @param subtitle Subtitle to set
324 public abstract void setSubtitle(CharSequence subtitle); argument
327 * Set the action bar's subtitle. This will only be displayed if
330 * @param resId Resource ID of subtitle string to set
403 * Set whether an activity title/subtitle should be displayed.
407 * @param showTitle true to display a title/subtitle i
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java393 public void setSubtitle(CharSequence subtitle) { argument
394 mActionView.setSubtitle(subtitle);
922 public void setSubtitle(CharSequence subtitle) { argument
923 mContextView.setSubtitle(subtitle);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java536 public void setSubtitle(CharSequence subtitle) { argument
538 mSubtitle = subtitle;
540 mSubtitleView.setText(subtitle);
541 mSubtitleView.setVisibility(subtitle != null ? VISIBLE : GONE);
585 * <p>As this encompasses the icon/logo, title and subtitle all in one, we need
601 final CharSequence subtitle = getSubtitle();
604 if (!TextUtils.isEmpty(subtitle)) {
607 title, subtitle, homeDesc);
H A DActionBarContextView.java163 public void setSubtitle(CharSequence subtitle) { argument
164 mSubtitle = subtitle;
/frameworks/base/services/java/com/android/server/accounts/
H A DAccountManagerService.java1435 String subtitle = "";
1438 subtitle = titleAndSubtitle.substring(index + 1);
1441 n.setLatestEventInfo(mContext, title, subtitle,

Completed in 354 milliseconds