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

/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditLayout.java117 public void setSubtitle(CharSequence subtitle) { argument
/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/java/com/android/internal/view/
H A DStandaloneActionMode.java60 public void setSubtitle(CharSequence subtitle) { argument
61 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.java540 public void setSubtitle(CharSequence subtitle) { argument
541 mSubtitle = subtitle;
543 mSubtitleView.setText(subtitle);
544 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.
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);

Completed in 68 milliseconds