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.java44 private FrameLayout mHostLayout; field in AboveShelfObserverTest
55 mHostLayout = new FrameLayout(getContext()); in setUp()
56 mObserver = new AboveShelfObserver(mHostLayout); in setUp()
59 mHostLayout.addView(row); in setUp()
62 mHostLayout.addView(row); in setUp()
68 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingAbove()
76 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingBelow()
85 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testStaysAboveWhenOneGoesAway()
87 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.java79 public NotificationStackScrollLayout mHostLayout; field in StackStateAnimator
101 mHostLayout = hostLayout; in StackStateAnimator()
153 int childCount = mHostLayout.getChildCount(); in startAnimationForEvents()
160 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents()
275 ? mHostLayout.getLastChildNotGone() in calculateChildAnimationDelay()
354 mHostLayout.onChildAnimationFinished(); in onAnimationFinished()
469 boolean isFullySwipedOut = mHostLayout.isFullySwipedOut(changingView); in processAnimationEvents()
531 mHostLayout.addTransientView(changingView, 0); in processAnimationEvents()
532 changingView.setTransientContainer(mHostLayout); in processAnimationEvents()
637 mHostLayout.addTransientView(changingView, 0); in processAnimationEvents()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java98 private NotificationStackScrollLayout mHostLayout; field in NotificationShelf
130 mHostLayout = hostLayout; in bind()
277 return mHostLayout.getSpeedBumpIndex(); in getSpeedBumpIndex()
518 return (ExpandableView) mHostLayout.getChildAt(index);
522 return mHostLayout.getChildCount();
604 return mHostLayout.getTransientView(index);
608 return mHostLayout.getTransientViewCount();
1004 return mHostLayout.indexOfChild(child); in getIndexOfViewInHostLayout()