Searched refs:mEmptyShadeView (Results 1 – 3 of 3) sorted by relevance
113 @Mock private EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayoutTest172 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 …]
283 protected EmptyShadeView mEmptyShadeView; field in NotificationStackScrollLayout1424 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 …]
4160 protected EmptyShadeView mEmptyShadeView;