Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java122 private NotificationStackScrollLayout mStackScroller; // Normally test this field in NotificationStackScrollLayoutTest
201 mStackScroller = spy(mStackScrollerInternal); in setUp()
202 mStackScroller.setResetUserExpandedStatesRunnable(() -> {}); in setUp()
203 mStackScroller.setEmptyShadeView(mEmptyShadeView); in setUp()
207 mStackScroller.setController(mStackScrollLayoutController); in setUp()
208 mStackScroller.setShelf(mNotificationShelf); in setUp()
209 when(mStackScroller.getExpandHelper()).thenReturn(mExpandHelper); in setUp()
221 mStackScroller.setQsExpansionFraction(1f); in testUpdateStackHeight_qsExpansionGreaterThanZero()
227 mStackScroller.setExpandedHeight(100f); in testUpdateStackHeight_qsExpansionGreaterThanZero()
240 mStackScroller.setQsExpansionFraction(0f); in testUpdateStackHeight_qsExpansionZero()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationsQuickSettingsContainer.java52 private View mStackScroller; field in NotificationsQuickSettingsContainer
87 mStackScroller = stackScroller; in setStackScroller()
119 MarginLayoutParams params = (MarginLayoutParams) mStackScroller.getLayoutParams(); in setNotificationsMarginBottom()
121 mStackScroller.setLayoutParams(params); in setNotificationsMarginBottom()
174 if (mStackScroller.getVisibility() == View.VISIBLE) { in dispatchDraw()
175 mDrawingOrderedChildren.add(mStackScroller); in dispatchDraw()
176 mLayoutDrawingOrder.add(mStackScroller); in dispatchDraw()
215 if (mStackScroller == null || mQSContainer == null) { in applyBackScaling()
220 mStackScroller.getBoundsOnScreen(mBoundingBoxRect); in applyBackScaling()
234 mStackScroller.setPivotX(usingSplitShade ? 0.0f : cx); in applyBackScaling()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DCentralSurfacesImpl.java764 mStackScroller = mStackScrollerController.getView(); in CentralSurfacesImpl()
1546 mStackScroller); in startKeyguard()
1752 pw.print(" mStackScroller: " + CentralSurfaces.viewInfo(mStackScroller)); in dump()
1753 pw.print(" scroll " + mStackScroller.getScrollX() in dump()
1754 + "," + mStackScroller.getScrollY()); in dump()
1755 pw.println(" translationX " + mStackScroller.getTranslationX()); in dump()
1773 pw.println(" mStackScroller: " + mStackScroller + " (dump moved)"); in dump()
2856 private final NotificationStackScrollLayout mStackScroller;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DCentralSurfacesImplTest.java248 @Mock private NotificationStackScrollLayout mStackScroller; field in CentralSurfacesImplTest
414 when(mStackScrollerController.getView()).thenReturn(mStackScroller); in setup()
415 when(mStackScroller.generateLayoutParams(any())).thenReturn(new LayoutParams(0, 0)); in setup()