Home
last modified time | relevance | path

Searched refs:mEmptyShadeView (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java132 @Mock private EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayoutTest
203 mStackScroller.setEmptyShadeView(mEmptyShadeView); in setUp()
312 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndSuppressing()
318 verify(mEmptyShadeView).setText(R.string.dnd_suppressing_shade_text); in updateEmptyView_dndSuppressing()
323 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_dndNotSuppressing()
324 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndNotSuppressing()
330 verify(mEmptyShadeView).setText(R.string.empty_shade_text); in updateEmptyView_dndNotSuppressing()
335 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_noNotificationsToDndSuppressing()
336 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_noNotificationsToDndSuppressing()
340 verify(mEmptyShadeView).setText(R.string.empty_shade_text); in updateEmptyView_noNotificationsToDndSuppressing()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java280 protected EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayout
1719 if (mEmptyShadeView.getVisibility() == GONE) {
1731 appearPosition = mEmptyShadeView.getHeight();
1745 if (mEmptyShadeView.getVisibility() == GONE && visibleNotifCount > 0) {
1757 appearPosition = mEmptyShadeView.getHeight();
4452 if (mEmptyShadeView != null) { in updateDecorViews()
4453 mEmptyShadeView.setTextColors(onSurface, onSurfaceVariant); in updateDecorViews()
4588 if (mEmptyShadeView != null) { in setEmptyShadeView()
4589 index = indexOfChild(mEmptyShadeView); in setEmptyShadeView()
4590 removeView(mEmptyShadeView); in setEmptyShadeView()
[all …]