FileDocCategorySizeDatePackage
NotificationOverflowContainer.javaAPI DocAndroid 5.1 API2208Thu Mar 12 22:22:42 GMT 2015com.android.systemui.statusbar

NotificationOverflowContainer

public class NotificationOverflowContainer extends ActivatableNotificationView
Container view for overflowing notification icons on Keyguard.

Fields Summary
private NotificationOverflowIconsView
mIconsView
private com.android.systemui.ViewInvertHelper
mViewInvertHelper
private boolean
mDark
Constructors Summary
public NotificationOverflowContainer(android.content.Context context, android.util.AttributeSet attrs)

        super(context, attrs);
    
Methods Summary
public NotificationOverflowIconsViewgetIconsView()

        return mIconsView;
    
protected voidonFinishInflate()

        super.onFinishInflate();
        mIconsView = (NotificationOverflowIconsView) findViewById(R.id.overflow_icons_view);
        mIconsView.setMoreText((TextView) findViewById(R.id.more_text));
        mIconsView.setOverflowIndicator(findViewById(R.id.more_icon_overflow));
        mViewInvertHelper = new ViewInvertHelper(findViewById(R.id.content),
                NotificationPanelView.DOZE_ANIMATION_DURATION);
    
public voidsetDark(boolean dark, boolean fade, long delay)

        super.setDark(dark, fade, delay);
        if (mDark == dark) return;
        mDark = dark;
        if (fade) {
            mViewInvertHelper.fade(dark, delay);
        } else {
            mViewInvertHelper.update(dark);
        }