Home
last modified time | relevance | path

Searched refs:mHostLayout (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DAboveShelfObserverTest.java43 private FrameLayout mHostLayout; field in AboveShelfObserverTest
54 mHostLayout = new FrameLayout(getContext()); in setUp()
55 mObserver = new AboveShelfObserver(mHostLayout); in setUp()
58 mHostLayout.addView(row); in setUp()
61 mHostLayout.addView(row); in setUp()
67 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingAbove()
75 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingBelow()
84 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testStaysAboveWhenOneGoesAway()
86 row = (ExpandableNotificationRow) mHostLayout.getChildAt(1); in testStaysAboveWhenOneGoesAway()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DAboveShelfObserver.java30 private final ViewGroup mHostLayout; field in AboveShelfObserver
35 mHostLayout = hostLayout; in AboveShelfObserver()
45 if (!hasViewsAboveShelf && mHostLayout != null) { in onAboveShelfStateChanged()
46 int n = mHostLayout.getChildCount(); in onAboveShelfStateChanged()
48 View child = mHostLayout.getChildAt(i); in onAboveShelfStateChanged()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DStackStateAnimator.java70 public NotificationStackScrollLayout mHostLayout; field in StackStateAnimator
93 mHostLayout = hostLayout; in StackStateAnimator()
132 int childCount = mHostLayout.getChildCount(); in startAnimationForEvents()
139 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents()
250 ? mHostLayout.getLastChildNotGone() in calculateChildAnimationDelay()
329 mHostLayout.onChildAnimationFinished(); in onAnimationFinished()
431 if (mHostLayout.isFullySwipedOut(changingView)) { in processAnimationEvents()
470 mHostLayout.addTransientView(changingView, 0); in processAnimationEvents()
471 changingView.setTransientContainer(mHostLayout); in processAnimationEvents()
513 final float startOverScrollAmount = mHostLayout.getCurrentOverScrollAmount(onTop); in animateOverScrollToAmount()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java105 private NotificationStackScrollLayout mHostLayout; field in NotificationShelf
148 mHostLayout = hostLayout; in bind()
286 return mHostLayout.getSpeedBumpIndex(); in getSpeedBumpIndex()
511 return (ExpandableView) mHostLayout.getChildAt(index);
519 return mHostLayout.getChildCount();
614 return mHostLayout.getTransientView(index);
622 return mHostLayout.getTransientViewCount();
1046 return mHostLayout.indexOfChild(child); in getIndexOfViewInHostLayout()