1 /* 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 17 package com.android.systemui.statusbar.notification; 18 19 import android.content.Context; 20 import android.view.View; 21 22 import com.android.systemui.statusbar.ExpandableNotificationRow; 23 import com.android.systemui.statusbar.TransformableView; 24 25 /** 26 * Wraps a notification containing a media template 27 */ 28 public class NotificationMediaTemplateViewWrapper extends NotificationTemplateViewWrapper { 29 30 protected NotificationMediaTemplateViewWrapper(Context ctx, View view, 31 ExpandableNotificationRow row) { 32 super(ctx, view, row); 33 } 34 35 View mActions; 36 37 private void resolveViews() { 38 mActions = mView.findViewById(com.android.internal.R.id.media_actions); 39 } 40 41 @Override 42 public void onContentUpdated(ExpandableNotificationRow row) { 43 // Reinspect the notification. Before the super call, because the super call also updates 44 // the transformation types and we need to have our values set by then. 45 resolveViews(); 46 super.onContentUpdated(row); 47 } 48 49 @Override 50 protected void updateTransformedTypes() { 51 // This also clears the existing types 52 super.updateTransformedTypes(); 53 if (mActions != null) { 54 mTransformationHelper.addTransformedView(TransformableView.TRANSFORMING_VIEW_ACTIONS, 55 mActions); 56 } 57 } 58 59 @Override 60 public boolean isDimmable() { 61 return getCustomBackgroundColor() == 0; 62 } 63 64 @Override 65 public boolean shouldClipToRounding(boolean topRounded, boolean bottomRounded) { 66 return true; 67 } 68 } 69