Home
last modified time | relevance | path

Searched refs:expandable (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationHeaderViewWrapper.java215 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()
DNotificationConversationTemplateViewWrapper.kt123 expandable: Boolean, in getShelfTransformationTarget()
126 ) = conversationLayout.updateExpandability(expandable, onClickListener) in getShelfTransformationTarget()
DNotificationViewWrapper.java237 public void updateExpandability(boolean expandable, View.OnClickListener onClickListener, in updateExpandability() argument
/frameworks/base/core/java/android/widget/
DActionMenuView.java228 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/
DNotificationContentView.java1560 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 …]
DExpandableNotificationRow.java2176 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/
DLockscreenShadeTransitionController.kt702 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/
Dplugin_hooks.md11 Use: Allows the entire QS panel to be replaced with something else that is optionally expandable.
/frameworks/base/core/java/com/android/internal/widget/
DConversationLayout.java1140 public void updateExpandability(boolean expandable, @Nullable OnClickListener onClickListener) { in updateExpandability() argument
1141 mExpandable = expandable; in updateExpandability()
1142 if (expandable) { in updateExpandability()