blob: 7f8f20f7a8f0c850a03cbf29fdea12b85b1d4d22 [file] [log] [blame]
Jorim Jaggi4e857f42014-11-17 19:14:04 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License
15 */
16
Selim Cinek0ffbda62016-01-01 20:29:12 +010017package com.android.systemui.statusbar.notification;
Jorim Jaggi4e857f42014-11-17 19:14:04 +010018
19import android.view.View;
20
21import com.android.systemui.ViewInvertHelper;
22import com.android.systemui.statusbar.phone.NotificationPanelView;
23
24/**
25 * Wraps a notification containing a custom view.
26 */
27public class NotificationCustomViewWrapper extends NotificationViewWrapper {
28
29 private final ViewInvertHelper mInvertHelper;
Jorim Jaggi4e857f42014-11-17 19:14:04 +010030
31 protected NotificationCustomViewWrapper(View view) {
32 super(view);
33 mInvertHelper = new ViewInvertHelper(view, NotificationPanelView.DOZE_ANIMATION_DURATION);
34 }
35
36 @Override
37 public void setDark(boolean dark, boolean fade, long delay) {
Selim Cinekb88b9842016-02-26 09:25:33 -080038 if (dark == mDark && mDarkInitialized) {
Selim Cinek19ba7052016-01-27 20:04:27 -080039 return;
40 }
41 super.setDark(dark, fade, delay);
Jorim Jaggi394a5d62014-11-26 23:07:13 +010042 if (fade) {
43 mInvertHelper.fade(dark, delay);
44 } else {
45 mInvertHelper.update(dark);
Jorim Jaggi4e857f42014-11-17 19:14:04 +010046 }
47 }
Selim Cinekf64044c2016-02-11 18:18:08 -080048
49 @Override
50 public void setVisible(boolean visible) {
51 super.setVisible(visible);
52 mView.setAlpha(visible ? 1.0f : 0.0f);
53 }
Jorim Jaggi4e857f42014-11-17 19:14:04 +010054}