Searched defs:mStackScroller (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayoutTest.java44 private NotificationStackScrollLayout mStackScroller; field in class:NotificationStackScrollLayoutTest
50 mStackScroller = new NotificationStackScrollLayout(getContext());
52 mStackScroller.setStatusBar(mBar);
53 mStackScroller.setScrimController(mock(ScrimController.class));
59 mStackScroller.setDimmed(true /* dimmed */, false /* animate */);
60 mStackScroller.setDimmed(true /* dimmed */, true /* animate */);
61 Assert.assertFalse(mStackScroller.isDimmed());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
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()
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 DStatusBar.java704 boolean isVisible = mStackScroller.isInVisibleLocation(entry.row);
1017 mStackScroller = (NotificationStackScrollLayout) mStatusBarWindow.findViewById(
1021 mAboveShelfObserver = new AboveShelfObserver(mStackScroller);
1080 mStackScroller.setLongPressListener(getNotificationLongClicker());
1081 mStackScroller.setStatusBar(this);
1082 mStackScroller.setGroupManager(mGroupManager);
1083 mStackScroller.setHeadsUpManager(mHeadsUpManager);
1084 mGroupManager.setOnGroupChangeListener(mStackScroller);
1085 mVisualStabilityManager.setVisibilityLocationProvider(mStackScroller);
1089 mExpandedContents = mStackScroller;
5700 protected NotificationStackScrollLayout mStackScroller; field in class:StatusBar
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBrightnessMirrorController.java38 private final NotificationStackScrollLayout mStackScroller; field in class:BrightnessMirrorController
54 mStackScroller = (NotificationStackScrollLayout) statusBarWindow.findViewById(
61 mStackScroller.setFadingOut(true);
75 mStackScroller.setFadingOut(false);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarTest.java102 NotificationStackScrollLayout mStackScroller; field in class:StatusBarTest
128 mStackScroller = mock(NotificationStackScrollLayout.class);
129 when(mStackScroller.generateLayoutParams(any())).thenReturn(new LayoutParams(0, 0));
147 mKeyguardIndicationController, mStackScroller, mHeadsUpManager,
164 when(mStackScroller.getActivatedChild()).thenReturn(null);
522 mStackScroller = stack;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackView.java153 private TaskStackViewScroller mStackScroller; field in class:TaskStackView
281 mStackScroller = new TaskStackViewScroller(context, this, mLayoutAlgorithm);
282 mTouchHandler = new TaskStackViewTouchHandler(context, this, mStackScroller);
369 mStackScroller.reset();
403 mStackScroller.setStackScrollToInitialState();
600 mStackScroller.getStackScroll(), targetStackScroll, mIgnoreTasks,
716 bindVisibleTaskViews(mStackScroller.getStackScroll(),
777 mLayoutAlgorithm.getStackTransform(task, mStackScroller.getStackScroll(),
899 mStackScroller.boundScroll();
917 return mStackScroller;
[all...]

Completed in 176 milliseconds