Searched defs:collapsed (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DTableRow.java97 * @param collapsed true if the column must be collapsed, false otherwise
100 void setColumnCollapsed(int columnIndex, boolean collapsed) { argument
103 child.setVisibility(collapsed ? GONE : VISIBLE);
H A DSearchView.java123 /** Icon optionally displayed when the SearchView is collapsed. */
869 private void updateViewsVisibility(final boolean collapsed) { argument
870 mIconified = collapsed;
871 // Visibility of views that are visible when collapsed
872 final int visCollapsed = collapsed ? VISIBLE : GONE;
878 mSearchEditFrame.setVisibility(collapsed ? GONE : VISIBLE);
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java78 * The height in pixels of reserved space added to the top of the collapsed UI;
163 public void setCollapsed(boolean collapsed) { argument
165 mOpenOnLayout = collapsed;
167 smoothScrollTo(collapsed ? mCollapsibleHeight : 0, 0);
217 // Start out collapsed at first unless we restored state for otherwise
/frameworks/support/design/src/android/support/design/widget/
H A DAppBarLayout.java279 * be fully collapsed
294 * be fully collapsed
356 // For a collapsing scroll, we to take the collapsed height into account.
403 // If they're set to enter collapsed, use the minimum height
406 // Only enter by the amount of the collapsed height
444 // For a collapsing exit scroll, we to take the collapsed height into account.
520 * Sets whether the AppBarLayout is in a collapsed state or not.
522 * @return true if the collapsed state changed
524 boolean setCollapsedState(boolean collapsed) { argument
525 if (mCollapsed != collapsed) {
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java99 * as an action view, it's collapsed by default, so you must provide an icon for the action.
142 /** Icon optionally displayed when the SearchView is collapsed. */
909 private void updateViewsVisibility(final boolean collapsed) { argument
910 mIconified = collapsed;
911 // Visibility of views that are visible when collapsed
912 final int visCollapsed = collapsed ? VISIBLE : GONE;
918 mSearchEditFrame.setVisibility(collapsed ? GONE : VISIBLE);

Completed in 183 milliseconds