Searched refs:mStackScroller (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayoutTest.java62 private NotificationStackScrollLayout mStackScroller; field in class:NotificationStackScrollLayoutTest
81 mStackScroller = new NotificationStackScrollLayout(getContext());
82 mStackScroller.setShelf(notificationShelf);
83 mStackScroller.setStatusBar(mBar);
84 mStackScroller.setScrimController(mock(ScrimController.class));
85 mStackScroller.setHeadsUpManager(mHeadsUpManager);
86 mStackScroller.setGroupManager(mGroupManager);
87 mStackScroller.setEmptyShadeView(mEmptyShadeView);
105 mStackScroller.setDimmed(true /* dimmed */, false /* animate */);
106 mStackScroller
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceController.java47 private final NotificationStackScrollLayout mStackScroller; field in class:HeadsUpAppearanceController
91 mStackScroller = stackScroller;
96 mStackScroller.addOnExpandedHeightListener(mSetExpandedHeight);
97 mStackScroller.addOnLayoutChangeListener(mStackScrollLayoutChangeListener);
98 mStackScroller.setHeadsUpAppearanceController(this);
111 mStackScroller.removeOnExpandedHeightListener(mSetExpandedHeight);
112 mStackScroller.removeOnLayoutChangeListener(mStackScrollLayoutChangeListener);
156 if (mStackScroller.getDisplay() != null) {
157 mStackScroller.getDisplay().getRealSize(mPoint);
161 WindowInsets windowInset = mStackScroller
[all...]
H A DNotificationsQuickSettingsContainer.java49 private NotificationStackScrollLayout mStackScroller; field in class:NotificationsQuickSettingsContainer
67 mStackScroller = findViewById(R.id.notification_stack_scroller);
68 mStackScrollerMargin = ((LayoutParams) mStackScroller.getLayoutParams()).bottomMargin;
91 reloadWidth(mStackScroller, R.dimen.notification_panel_width);
116 View stackQsTop = qsBottom ? mStackScroller : mQsFrame;
117 View stackQsBottom = !qsBottom ? mStackScroller : mQsFrame;
125 } else if (child == mStackScroller) {
177 setBottomMargin(mStackScroller, 0);
180 setBottomMargin(mStackScroller, mStackScrollerMargin);
182 mStackScroller
[all...]
H A DHeadsUpTouchHelper.java35 private NotificationStackScrollLayout mStackScroller; field in class:HeadsUpTouchHelper
50 mStackScroller = stackScroller;
78 ExpandableView child = mStackScroller.getChildAtRawPosition(x, y);
82 mTouchingHeadsUpView = !mStackScroller.isExpanded()
84 } else if (child == null && !mStackScroller.isExpanded()) {
H A DStatusBar.java806 mStackScroller = mStatusBarWindow.findViewById(R.id.notification_stack_scroller);
811 mStackScroller);
812 mGutsManager.setUpWithPresenter(this, mEntryManager, mStackScroller, mCheckSaveListener,
820 mNotificationLogger.setUpWithEntryManager(mEntryManager, mStackScroller);
823 mAboveShelfObserver = new AboveShelfObserver(mStackScroller);
869 mEntryManager.setUpWithPresenter(this, mStackScroller, this, mHeadsUpManager);
870 mViewHierarchyManager.setUpWithPresenter(this, mEntryManager, mStackScroller);
887 mStackScroller.setLongPressListener(mEntryManager.getNotificationLongClicker());
888 mStackScroller.setStatusBar(this);
889 mStackScroller
4975 protected NotificationStackScrollLayout mStackScroller; field in class:StatusBar
[all...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DHeadsUpAppearanceControllerTest.java56 private final NotificationStackScrollLayout mStackScroller = field in class:HeadsUpAppearanceControllerTest
77 mStackScroller,
130 reset(mStackScroller);
137 verify(mStackScroller).removeOnExpandedHeightListener(any());
138 verify(mStackScroller).removeOnLayoutChangeListener(any());
H A DStatusBarTest.java128 @Mock private NotificationStackScrollLayout mStackScroller; field in class:StatusBarTest
186 when(mStackScroller.generateLayoutParams(any())).thenReturn(new LayoutParams(0, 0));
189 when(mStackScroller.getActivatedChild()).thenReturn(null);
207 mKeyguardIndicationController, mStackScroller, mHeadsUpManager,
219 mEntryManager.setUpForTest(mStatusBar, mStackScroller, mStatusBar, mHeadsUpManager,
221 mNotificationLogger.setUpWithEntryManager(mEntryManager, mStackScroller);
602 verify(mStackScroller).setFooterView(captor.capture());
614 verify(mStackScroller).updateFooterView(false, false);
626 when(mStackScroller.getChildCount()).thenReturn(1);
627 when(mStackScroller
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackView.java144 private TaskStackViewScroller mStackScroller; field in class:TaskStackView
259 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm);
260 mTouchHandler = new TaskStackViewTouchHandler(context, this, mStackScroller);
331 mStackScroller.reset();
366 mStackScroller.setStackScrollToInitialState();
545 mStackScroller.getStackScroll(), targetStackScroll, mIgnoreTasks,
656 bindVisibleTaskViews(mStackScroller.getStackScroll(), ignoreTaskOverrides);
716 mLayoutAlgorithm.getStackTransform(task, mStackScroller.getStackScroll(),
831 mStackScroller.boundScroll();
848 return mStackScroller;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarStatusBar.java93 mStackScroller.setScrollingEnabled(true);
371 //to get mStackScroller's position correctly.
373 pw.println(" mStackScroller: " + viewInfo(mStackScroller));
374 pw.println(" mStackScroller: " + viewInfo(mStackScroller)
375 + " scroll " + mStackScroller.getScrollX()
376 + "," + mStackScroller.getScrollY());
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationGutsManagerTest.java91 @Mock private NotificationStackScrollLayout mStackScroller; field in class:NotificationGutsManagerTest
103 mGutsManager.setUpWithPresenter(mPresenter, mEntryManager, mStackScroller,

Completed in 181 milliseconds