Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java115 @Mock private EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayoutTest
180 mStackScroller.setEmptyShadeView(mEmptyShadeView); in setUp()
225 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndSuppressing()
230 verify(mEmptyShadeView).setText(R.string.dnd_suppressing_shade_text); in updateEmptyView_dndSuppressing()
235 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_dndNotSuppressing()
236 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndNotSuppressing()
241 verify(mEmptyShadeView).setText(R.string.empty_shade_text); in updateEmptyView_dndNotSuppressing()
246 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_noNotificationsToDndSuppressing()
247 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_noNotificationsToDndSuppressing()
250 verify(mEmptyShadeView).setText(R.string.empty_shade_text); in updateEmptyView_noNotificationsToDndSuppressing()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java283 protected EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayout
1426 if (mEmptyShadeView.getVisibility() == GONE && notGoneChildCount != 0) {
1437 appearPosition = mEmptyShadeView.getHeight();
4676 mEmptyShadeView.setTextColor(textColor);
4868 if (mEmptyShadeView != null) {
4869 index = indexOfChild(mEmptyShadeView);
4870 removeView(mEmptyShadeView);
4872 mEmptyShadeView = emptyShadeView;
4873 addView(mEmptyShadeView, index);
4878 mEmptyShadeView.setVisible(visible, mIsExpanded && mAnimationsEnabled);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java4160 protected EmptyShadeView mEmptyShadeView;