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
50 mHostLayout = new FrameLayout(getContext()); in setUp()
51 mObserver = new AboveShelfObserver(mHostLayout); in setUp()
54 mHostLayout.addView(row); in setUp()
57 mHostLayout.addView(row); in setUp()
63 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingAbove()
71 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingBelow()
80 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testStaysAboveWhenOneGoesAway()
82 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/stack/
DStackStateAnimator.java66 public NotificationStackScrollLayout mHostLayout; field in StackStateAnimator
90 mHostLayout = hostLayout; in StackStateAnimator()
133 int childCount = mHostLayout.getChildCount(); in startAnimationForEvents()
139 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents()
217 int childCount = mHostLayout.getChildCount(); in findLastNotAddedIndex()
219 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in findLastNotAddedIndex()
261 ? mHostLayout.getLastChildNotGone() in calculateChildAnimationDelay()
341 mHostLayout.onChildAnimationFinished(); in onAnimationFinished()
470 mHostLayout.addTransientView(changingView, 0); in processAnimationEvents()
471 changingView.setTransientContainer(mHostLayout); in processAnimationEvents()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java71 private NotificationStackScrollLayout mHostLayout; field in NotificationShelf
112 mHostLayout = hostLayout; in bind()
267 for (int i = 0; i < mHostLayout.getChildCount(); i++) { in updateAppearance()
268 ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in updateAppearance()
330 + " \n number of notifications: " + mHostLayout.getChildCount() ); in updateAppearance()
344 for (int i = 0; i < mHostLayout.getChildCount(); i++) { in updateAppearance()
345 View child = mHostLayout.getChildAt(i); in updateAppearance()
368 for (int i = 0; i < mHostLayout.getTransientViewCount(); i++) {
369 View transientView = mHostLayout.getTransientView(i);
499 + mHostLayout.getPositionInLinearLayout(row);