Lines Matching refs:description

32  * and a description, and typically also an icon.
120 * The mActionFlags holds various action states such as whether title or description are
264 * Sets the description for this action. The description is typically a longer string
266 * @param description The description for this action.
268 public B description(CharSequence description) {
269 mDescription = description;
274 * Sets the description for this action. The description is typically a longer string
276 * @param descriptionResourceId String resource id of the description for this action.
278 public B description(@StringRes int descriptionResourceId) {
284 * Sets the optional description text to edit. When TextView is activated, the edit
285 * description replaces the string of description.
286 * @param description The description to edit for this action.
288 public B editDescription(CharSequence description) {
289 mEditDescription = description;
294 * Sets the optional description text to edit. When TextView is activated, the edit
295 * description replaces the string of description.
296 * @param descriptionResourceId String resource id of the description to edit for this
366 * Indicates whether this action's description is editable
367 * @param editable Whether this action description is editable.
412 * Sets {@link InputType} of this action description not in editing.
414 * @param inputType InputType for the action description not in editing.
433 * Sets {@link InputType} of this action description in editing.
435 * @param inputType InputType for the action description in editing.
474 * Indicates whether the title and description are long, and should be displayed
476 * @param multilineDescription Whether this action has a multiline description.
643 * Returns the optional description text to edit. When not null, it is being edited instead of
645 * @return Optional description text to edit instead of {@link #getDescription()}.
652 * Sets the optional description text to edit instead of {@link #setDescription(CharSequence)}.
653 * @param editDescription Optional description text to edit instead of
670 * Returns the description of this action.
671 * @return The description of this action.
678 * Sets the description of this action.
679 * @param description The description of the action.
681 public void setDescription(CharSequence description) {
682 setLabel2(description);
710 * Returns whether this action description is editable.
711 * @return true if the action description is editable, false otherwise.
718 * Returns if this action has editable title or editable description.
719 * @return True if this action has editable title or editable description, false otherwise.
742 * Returns InputType of action description in editing; only valid when
744 * @return InputType of action description in editing.
759 * Returns InputType of action description not in editing.
760 * @return InputType of action description not in editing.
796 * Returns whether this action is has a multiline description.
797 * @return true if the action was constructed as having a multiline description, false
931 String description = bundle.getString(key);
932 if (description != null) {
933 setDescription(description);