Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DAboveShelfObserverTest.java43 private FrameLayout mHostLayout; field in AboveShelfObserverTest
51 mHostLayout = new FrameLayout(getContext()); in setUp()
52 mObserver = new AboveShelfObserver(mHostLayout); in setUp()
55 mHostLayout.addView(row); in setUp()
58 mHostLayout.addView(row); in setUp()
64 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingAbove()
72 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingBelow()
81 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testStaysAboveWhenOneGoesAway()
83 row = (ExpandableNotificationRow) mHostLayout.getChildAt(1); in testStaysAboveWhenOneGoesAway()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackStateAnimator.java70 public NotificationStackScrollLayout mHostLayout; field in StackStateAnimator
92 mHostLayout = hostLayout; in StackStateAnimator()
135 int childCount = mHostLayout.getChildCount(); in startAnimationForEvents()
142 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents()
248 ? mHostLayout.getLastChildNotGone() in calculateChildAnimationDelay()
327 mHostLayout.onChildAnimationFinished(); in onAnimationFinished()
436 mHostLayout.addTransientView(changingView, 0); in processAnimationEvents()
437 changingView.setTransientContainer(mHostLayout); in processAnimationEvents()
460 mHostLayout.getLocationOnScreen(mTmpLocation); in processAnimationEvents()
490 final float startOverScrollAmount = mHostLayout.getCurrentOverScrollAmount(onTop); in animateOverScrollToAmount()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java78 private NotificationStackScrollLayout mHostLayout; field in NotificationShelf
134 mHostLayout = hostLayout; in bind()
299 for (int i = 0; i < mHostLayout.getChildCount(); i++) { in updateAppearance()
300 ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in updateAppearance()
404 for (int i = 0; i < mHostLayout.getChildCount(); i++) { in updateAppearance()
405 View child = mHostLayout.getChildAt(i); in updateAppearance()
428 for (int i = 0; i < mHostLayout.getTransientViewCount(); i++) {
429 View transientView = mHostLayout.getTransientView(i);
579 + mHostLayout.getPositionInLinearLayout(row);