blob: 30698e1091788cb634de3d3683898e13b257af1c [file] [log] [blame]
Selim Cinekdf5bf612016-02-26 09:56:31 -08001/*
2 * Copyright (C) 2016 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
17package com.android.systemui.statusbar.notification;
18
19import android.content.Context;
20import android.service.notification.StatusBarNotification;
21import android.view.View;
22
23import com.android.systemui.statusbar.TransformableView;
24
25/**
26 * Wraps a notification containing a media template
27 */
28public class NotificationMediaTemplateViewWrapper extends NotificationTemplateViewWrapper {
29
30 protected NotificationMediaTemplateViewWrapper(Context ctx, View view) {
31 super(ctx, view);
32 }
33
34 View mActions;
35
36 private void resolveViews(StatusBarNotification notification) {
37 mActions = mView.findViewById(com.android.internal.R.id.media_actions);
38 }
39
40 @Override
41 public void notifyContentUpdated(StatusBarNotification notification) {
42 // Reinspect the notification. Before the super call, because the super call also updates
43 // the transformation types and we need to have our values set by then.
44 resolveViews(notification);
45 super.notifyContentUpdated(notification);
46 }
47
48 @Override
49 protected void updateTransformedTypes() {
50 // This also clears the existing types
51 super.updateTransformedTypes();
52 if (mActions != null) {
53 mTransformationHelper.addTransformedView(TransformableView.TRANSFORMING_VIEW_TEXT,
54 mActions);
55 }
56 }
57}