Searched refs:subtitle (Results 1 - 12 of 12) 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/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/ex/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java471 * Adjusts the activity title and subtitle to reflect the photo name and count.
476 final String subtitle;
489 subtitle = null;
491 subtitle = getResources().getString(R.string.photo_view_count, position, mAlbumCount);
497 actionBar.setSubtitle(subtitle);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewActivity.java488 * Adjusts the activity title and subtitle to reflect the photo name and count.
493 final String subtitle;
506 subtitle = null;
508 subtitle = getResources().getString(R.string.photo_view_count, position, mAlbumCount);
514 actionBar.setSubtitle(subtitle);
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java117 public void setSubtitle(CharSequence subtitle) { argument
/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.
309 * Set the action bar's subtitle. This will only be displayed if
311 * subtitle entirely.
313 * @param subtitle Subtitle to set
318 public abstract void setSubtitle(CharSequence subtitle); argument
321 * Set the action bar's subtitle. This will only be displayed if
324 * @param resId Resource ID of subtitle string to set
397 * Set whether an activity title/subtitle should be displayed.
401 * @param showTitle true to display a title/subtitle i
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java386 public void setSubtitle(CharSequence subtitle) { argument
387 mActionView.setSubtitle(subtitle);
884 public void setSubtitle(CharSequence subtitle) { argument
885 mContextView.setSubtitle(subtitle);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java163 public void setSubtitle(CharSequence subtitle) { argument
164 mSubtitle = subtitle;
H A DActionBarView.java541 public void setSubtitle(CharSequence subtitle) { argument
542 mSubtitle = subtitle;
544 mSubtitleView.setText(subtitle);
545 mSubtitleView.setVisibility(subtitle != null ? VISIBLE : GONE);
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1193 String subtitle = "";
1196 subtitle = titleAndSubtitle.substring(index + 1);
1199 n.setLatestEventInfo(mContext, title, subtitle,

Completed in 3297 milliseconds