1 /*
2  * Copyright (C) 2020 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.wm.shell.bubbles;
18 
19 import android.graphics.Bitmap;
20 import android.graphics.Path;
21 import android.view.View;
22 
23 import androidx.annotation.Nullable;
24 
25 /**
26  * Interface to represent actual Bubbles and UI elements that act like bubbles, like BubbleOverflow.
27  */
28 public interface BubbleViewProvider {
getExpandedView()29     @Nullable BubbleExpandedView getExpandedView();
30 
31     /**
32      * Sets whether the contents of the bubble's TaskView should be visible.
33      */
setTaskViewVisibility(boolean visible)34     void setTaskViewVisibility(boolean visible);
35 
getIconView()36     @Nullable View getIconView();
37 
getKey()38     String getKey();
39 
40     /** Bubble icon bitmap with no badge and no dot. */
getBubbleIcon()41     Bitmap getBubbleIcon();
42 
43     /** App badge drawable to draw above bubble icon. */
getAppBadge()44     @Nullable Bitmap getAppBadge();
45 
46     /** Path of normalized bubble icon to draw dot on. */
getDotPath()47     Path getDotPath();
48 
getDotColor()49     int getDotColor();
50 
showDot()51     boolean showDot();
52 
getTaskId()53     int getTaskId();
54 }
55