NotificationCustomViewWrapperpublic 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 void | setDark(boolean dark, boolean fade, long delay)
if (fade) {
mInvertHelper.fade(dark, delay);
} else {
mInvertHelper.update(dark);
}
|
|