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.java113 @Mock private EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayoutTest
172 mStackScroller.setEmptyShadeView(mEmptyShadeView); in setUp()
215 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndSuppressing()
220 verify(mEmptyShadeView).setText(R.string.dnd_suppressing_shade_text); in updateEmptyView_dndSuppressing()
225 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_dndNotSuppressing()
226 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_dndNotSuppressing()
231 verify(mEmptyShadeView).setText(R.string.empty_shade_text); in updateEmptyView_dndNotSuppressing()
236 mStackScroller.setEmptyShadeView(mEmptyShadeView); in updateEmptyView_noNotificationsToDndSuppressing()
237 when(mEmptyShadeView.willBeGone()).thenReturn(true); in updateEmptyView_noNotificationsToDndSuppressing()
240 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
1424 if (mEmptyShadeView.getVisibility() == GONE && notGoneChildCount != 0) {
1435 appearPosition = mEmptyShadeView.getHeight();
4673 mEmptyShadeView.setTextColor(textColor);
4865 if (mEmptyShadeView != null) {
4866 index = indexOfChild(mEmptyShadeView);
4867 removeView(mEmptyShadeView);
4869 mEmptyShadeView = emptyShadeView;
4870 addView(mEmptyShadeView, index);
4875 mEmptyShadeView.setVisible(visible, mIsExpanded && mAnimationsEnabled);
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java4160 protected EmptyShadeView mEmptyShadeView;