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

NotificationCustomViewWrapper

public class NotificationCustomViewWrapper extends NotificationViewWrapper
Wraps a notification containing a custom view.

Fields Summary
private final com.android.systemui.ViewInvertHelper
mInvertHelper
Constructors Summary
protected NotificationCustomViewWrapper(android.view.View view)

        super(view);
        mInvertHelper = new ViewInvertHelper(view, NotificationPanelView.DOZE_ANIMATION_DURATION);
    
Methods Summary
public voidsetDark(boolean dark, boolean fade, long delay)

        if (fade) {
            mInvertHelper.fade(dark, delay);
        } else {
            mInvertHelper.update(dark);
        }