Searched defs:iconified (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DSearchView.java77 * needs to be set to iconified by default using {@link #setIconifiedByDefault(boolean)
484 // If it is not iconified, then give the focus to the text field
549 * the text field is programmatically de-iconified.
633 * if the default state is iconified, then it collapses to that state when the close button
638 * @param iconified whether the search field should be iconified by default
642 public void setIconifiedByDefault(boolean iconified) { argument
643 if (mIconifiedByDefault == iconified) return;
644 mIconifiedByDefault = iconified;
645 updateViewsVisibility(iconified);
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java520 // If it is not iconified, then give the focus to the text field
585 * the text field is programmatically de-iconified.
670 * if the default state is iconified, then it collapses to that state when the close button
675 * @param iconified whether the search field should be iconified by default
679 public void setIconifiedByDefault(boolean iconified) { argument
680 if (mIconifiedByDefault == iconified) return;
681 mIconifiedByDefault = iconified;
682 updateViewsVisibility(iconified);
687 * Returns the default iconified stat
[all...]

Completed in 30 milliseconds