Searched defs:expandable (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationHeaderViewWrapper.java231 public void updateExpandability(boolean expandable, View.OnClickListener onClickListener) { argument
232 mExpandButton.setVisibility(expandable ? View.VISIBLE : View.GONE);
233 mNotificationHeader.setOnClickListener(expandable ? onClickListener : null);
H A DNotificationViewWrapper.java124 * @param expandable should this view be expandable
127 public void updateExpandability(boolean expandable, View.OnClickListener onClickListener) {} argument
/frameworks/base/core/java/android/widget/
H A DActionMenuView.java226 lp.expandable = false;
238 if (lp.expandable) expandableItemCount++;
263 if (!lp.expandable) continue;
389 * <p>Sets the expandable and cellsUsed fields of LayoutParams.
423 final boolean expandable = !lp.isOverflowButton && hasText;
424 lp.expandable = expandable;
805 public boolean expandable; field in class:ActionMenuView.LayoutParams
846 encoder.addProperty("layout:expandable", expandable);
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java229 lp.expandable = false;
241 if (lp.expandable) expandableItemCount++;
266 if (!lp.expandable) continue;
392 * <p>Sets the expandable and cellsUsed fields of LayoutParams.
426 final boolean expandable = !lp.isOverflowButton && hasText;
427 lp.expandable = expandable;
824 public boolean expandable; field in class:ActionMenuView.LayoutParams
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationContentView.java1269 public void updateExpandButtons(boolean expandable) { argument
1270 mExpandable = expandable;
1276 expandable = false;
1279 expandable = false;
1283 mExpandedWrapper.updateExpandability(expandable, mExpandClickListener);
1286 mContractedWrapper.updateExpandability(expandable, mExpandClickListener);
1289 mHeadsUpWrapper.updateExpandability(expandable, mExpandClickListener);
1291 mIsContentExpandable = expandable;
H A DExpandableNotificationRow.java1408 public void setExpandable(boolean expandable) { argument
1409 mExpandable = expandable;
2097 boolean expandable = mShowingPublic;
2099 if (!expandable) {
2101 expandable = true;
2106 expandable = mPrivateLayout.isContentExpandable();
2110 if (expandable) {

Completed in 1929 milliseconds