Searched refs:expandable (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationHeaderViewWrapper.java | 215 public void updateExpandability(boolean expandable, View.OnClickListener onClickListener, in updateExpandability() argument 217 mExpandButton.setVisibility(expandable ? View.VISIBLE : View.GONE); in updateExpandability() 218 mExpandButton.setOnClickListener(expandable ? onClickListener : null); in updateExpandability() 220 mAltExpandTarget.setOnClickListener(expandable ? onClickListener : null); in updateExpandability() 223 mIconContainer.setOnClickListener(expandable ? onClickListener : null); in updateExpandability() 226 mNotificationHeader.setOnClickListener(expandable ? onClickListener : null); in updateExpandability()
|
D | NotificationConversationTemplateViewWrapper.kt | 123 expandable: Boolean, in getShelfTransformationTarget() 126 ) = conversationLayout.updateExpandability(expandable, onClickListener) in getShelfTransformationTarget()
|
D | NotificationViewWrapper.java | 237 public void updateExpandability(boolean expandable, View.OnClickListener onClickListener, in updateExpandability() argument
|
/frameworks/base/core/java/android/widget/ |
D | ActionMenuView.java | 228 lp.expandable = false; in onMeasureExactFormat() 240 if (lp.expandable) expandableItemCount++; in onMeasureExactFormat() 265 if (!lp.expandable) continue; in onMeasureExactFormat() 425 final boolean expandable = !lp.isOverflowButton && hasText; in measureChildForCells() 426 lp.expandable = expandable; in measureChildForCells() 818 public boolean expandable; field in ActionMenuView.LayoutParams 861 encoder.addProperty("layout:expandable", expandable); in encodeProperties()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 1560 public void updateExpandButtons(boolean expandable) { in updateExpandButtons() argument 1561 updateExpandButtonsDuringLayout(expandable, false /* duringLayout */); in updateExpandButtons() 1564 private void updateExpandButtonsDuringLayout(boolean expandable, boolean duringLayout) { in updateExpandButtonsDuringLayout() argument 1565 mExpandable = expandable; in updateExpandButtonsDuringLayout() 1572 expandable = false; in updateExpandButtonsDuringLayout() 1575 expandable = false; in updateExpandButtonsDuringLayout() 1578 boolean requestLayout = duringLayout && mIsContentExpandable != expandable; in updateExpandButtonsDuringLayout() 1580 mExpandedWrapper.updateExpandability(expandable, mExpandClickListener, requestLayout); in updateExpandButtonsDuringLayout() 1583 mContractedWrapper.updateExpandability(expandable, mExpandClickListener, requestLayout); in updateExpandButtonsDuringLayout() 1586 mHeadsUpWrapper.updateExpandability(expandable, mExpandClickListener, requestLayout); in updateExpandButtonsDuringLayout() [all …]
|
D | ExpandableNotificationRow.java | 2176 public void setExpandable(boolean expandable) { 2177 mExpandable = expandable; 3002 boolean expandable = shouldShowPublic(); 3004 if (!expandable) { 3006 expandable = true; 3011 expandable = mPrivateLayout.isContentExpandable(); 3015 if (expandable && !mIsSnoozed) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | LockscreenShadeTransitionController.kt | 702 val expandable = child.isContentExpandable in handleExpansion() constant 703 val rubberbandFactor = if (expandable) { in handleExpansion() 709 if (expandable && rubberband + child.collapsedHeight > child.maxContentHeight) { in handleExpansion()
|
/frameworks/base/packages/SystemUI/docs/ |
D | plugin_hooks.md | 11 Use: Allows the entire QS panel to be replaced with something else that is optionally expandable.
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ConversationLayout.java | 1140 public void updateExpandability(boolean expandable, @Nullable OnClickListener onClickListener) { in updateExpandability() argument 1141 mExpandable = expandable; in updateExpandability() 1142 if (expandable) { in updateExpandability()
|