Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 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.bubbles; |
| 18 | |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 19 | import static android.view.View.INVISIBLE; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 20 | import static android.view.View.VISIBLE; |
Joshua Tsuji | b1a796b | 2019-01-16 15:43:12 -0800 | [diff] [blame] | 21 | import static android.view.ViewGroup.LayoutParams.MATCH_PARENT; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 22 | |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 23 | import static com.android.systemui.statusbar.StatusBarState.SHADE; |
| 24 | import static com.android.systemui.statusbar.notification.NotificationAlertingManager.alertAgain; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 25 | |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 26 | import static java.lang.annotation.RetentionPolicy.SOURCE; |
| 27 | |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 28 | import android.annotation.Nullable; |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 29 | import android.app.ActivityManager; |
Mark Renouf | c808f069 | 2019-02-07 15:20:37 -0500 | [diff] [blame] | 30 | import android.app.ActivityManager.RunningTaskInfo; |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 31 | import android.app.ActivityTaskManager; |
| 32 | import android.app.IActivityTaskManager; |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 33 | import android.app.INotificationManager; |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 34 | import android.app.Notification; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 35 | import android.content.Context; |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 36 | import android.content.pm.ParceledListSlice; |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 37 | import android.graphics.Rect; |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 38 | import android.os.RemoteException; |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 39 | import android.os.ServiceManager; |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 40 | import android.provider.Settings; |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 41 | import android.service.notification.StatusBarNotification; |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 42 | import android.view.Display; |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 43 | import android.view.IPinnedStackController; |
| 44 | import android.view.IPinnedStackListener; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 45 | import android.view.ViewGroup; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 46 | import android.widget.FrameLayout; |
| 47 | |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 48 | import androidx.annotation.IntDef; |
Mark Renouf | 658c6bc | 2019-01-30 10:26:54 -0500 | [diff] [blame] | 49 | import androidx.annotation.MainThread; |
| 50 | |
Mady Mellor | ebdbbb9 | 2018-11-15 14:36:48 -0800 | [diff] [blame] | 51 | import com.android.internal.annotations.VisibleForTesting; |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 52 | import com.android.internal.statusbar.NotificationVisibility; |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 53 | import com.android.systemui.Dependency; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 54 | import com.android.systemui.R; |
Beverly | 8fdb533 | 2019-02-04 14:29:49 -0500 | [diff] [blame] | 55 | import com.android.systemui.plugins.statusbar.StatusBarStateController; |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 56 | import com.android.systemui.shared.system.ActivityManagerWrapper; |
| 57 | import com.android.systemui.shared.system.TaskStackChangeListener; |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 58 | import com.android.systemui.shared.system.WindowManagerWrapper; |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 59 | import com.android.systemui.statusbar.notification.NotificationEntryListener; |
| 60 | import com.android.systemui.statusbar.notification.NotificationEntryManager; |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 61 | import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider; |
Ned Burns | f81c4c4 | 2019-01-07 14:10:43 -0500 | [diff] [blame] | 62 | import com.android.systemui.statusbar.notification.collection.NotificationEntry; |
Ned Burns | 1a5e22f | 2019-02-14 15:11:52 -0500 | [diff] [blame] | 63 | import com.android.systemui.statusbar.notification.row.NotificationContentInflater.InflationFlag; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 64 | import com.android.systemui.statusbar.phone.StatusBarWindowController; |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 65 | import com.android.systemui.statusbar.policy.ConfigurationController; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 66 | |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 67 | import java.lang.annotation.Retention; |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 68 | import java.util.List; |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 69 | |
Jason Monk | 27d01a62 | 2018-12-10 15:57:09 -0500 | [diff] [blame] | 70 | import javax.inject.Inject; |
| 71 | import javax.inject.Singleton; |
| 72 | |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 73 | /** |
| 74 | * Bubbles are a special type of content that can "float" on top of other apps or System UI. |
| 75 | * Bubbles can be expanded to show more content. |
| 76 | * |
| 77 | * The controller manages addition, removal, and visible state of bubbles on screen. |
| 78 | */ |
Jason Monk | 27d01a62 | 2018-12-10 15:57:09 -0500 | [diff] [blame] | 79 | @Singleton |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 80 | public class BubbleController implements BubbleExpandedView.OnBubbleBlockedListener, |
| 81 | ConfigurationController.ConfigurationListener { |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 82 | |
| 83 | private static final String TAG = "BubbleController"; |
| 84 | |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 85 | @Retention(SOURCE) |
| 86 | @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED, |
| 87 | DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION}) |
| 88 | @interface DismissReason {} |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 89 | |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 90 | static final int DISMISS_USER_GESTURE = 1; |
| 91 | static final int DISMISS_AGED = 2; |
| 92 | static final int DISMISS_TASK_FINISHED = 3; |
| 93 | static final int DISMISS_BLOCKED = 4; |
| 94 | static final int DISMISS_NOTIF_CANCEL = 5; |
| 95 | static final int DISMISS_ACCESSIBILITY_ACTION = 6; |
| 96 | |
Joshua Tsuji | 25a4b7b | 2019-03-22 14:11:06 -0400 | [diff] [blame] | 97 | static final int MAX_BUBBLES = 5; // TODO: actually enforce this |
| 98 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 99 | // Enables some subset of notifs to automatically become bubbles |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 100 | private static final boolean DEBUG_ENABLE_AUTO_BUBBLE = false; |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 101 | |
Mady Mellor | 44ee2fe | 2019-01-30 17:51:16 -0800 | [diff] [blame] | 102 | /** Flag to enable or disable the entire feature */ |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 103 | private static final String ENABLE_BUBBLES = "experiment_enable_bubbles"; |
Mady Mellor | 44ee2fe | 2019-01-30 17:51:16 -0800 | [diff] [blame] | 104 | /** Auto bubble flags set whether different notif types should be presented as a bubble */ |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 105 | private static final String ENABLE_AUTO_BUBBLE_MESSAGES = "experiment_autobubble_messaging"; |
| 106 | private static final String ENABLE_AUTO_BUBBLE_ONGOING = "experiment_autobubble_ongoing"; |
| 107 | private static final String ENABLE_AUTO_BUBBLE_ALL = "experiment_autobubble_all"; |
Mady Mellor | 44ee2fe | 2019-01-30 17:51:16 -0800 | [diff] [blame] | 108 | |
| 109 | /** Use an activityView for an auto-bubbled notifs if it has an appropriate content intent */ |
Mark Renouf | 89b1a4a | 2018-12-04 14:59:45 -0500 | [diff] [blame] | 110 | private static final String ENABLE_BUBBLE_CONTENT_INTENT = "experiment_bubble_content_intent"; |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 111 | |
Joshua Tsuji | 010c2b1 | 2019-02-25 18:11:25 -0500 | [diff] [blame] | 112 | private static final String BUBBLE_STIFFNESS = "experiment_bubble_stiffness"; |
| 113 | private static final String BUBBLE_BOUNCINESS = "experiment_bubble_bounciness"; |
| 114 | |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 115 | private final Context mContext; |
| 116 | private final NotificationEntryManager mNotificationEntryManager; |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 117 | private final IActivityTaskManager mActivityTaskManager; |
| 118 | private final BubbleTaskStackListener mTaskStackListener; |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 119 | private BubbleStateChangeListener mStateChangeListener; |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 120 | private BubbleExpandListener mExpandListener; |
Issei Suzuki | c038754 | 2019-03-08 17:31:14 +0100 | [diff] [blame] | 121 | @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 122 | |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 123 | private BubbleData mBubbleData; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 124 | private BubbleStackView mStackView; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 125 | |
| 126 | // Bubbles get added to the status bar view |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 127 | private final StatusBarWindowController mStatusBarWindowController; |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 128 | private StatusBarStateListener mStatusBarStateListener; |
| 129 | |
| 130 | private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider = |
| 131 | Dependency.get(NotificationInterruptionStateProvider.class); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 132 | |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 133 | private INotificationManager mNotificationManagerService; |
| 134 | |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 135 | // Used for determining view rect for touch interaction |
| 136 | private Rect mTempRect = new Rect(); |
| 137 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 138 | /** |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 139 | * Listener to be notified when some states of the bubbles change. |
| 140 | */ |
| 141 | public interface BubbleStateChangeListener { |
| 142 | /** |
| 143 | * Called when the stack has bubbles or no longer has bubbles. |
| 144 | */ |
| 145 | void onHasBubblesChanged(boolean hasBubbles); |
| 146 | } |
| 147 | |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 148 | /** |
| 149 | * Listener to find out about stack expansion / collapse events. |
| 150 | */ |
| 151 | public interface BubbleExpandListener { |
| 152 | /** |
| 153 | * Called when the expansion state of the bubble stack changes. |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 154 | * |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 155 | * @param isExpanding whether it's expanding or collapsing |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 156 | * @param key the notification key associated with bubble being expanded |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 157 | */ |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 158 | void onBubbleExpandChanged(boolean isExpanding, String key); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Listens for the current state of the status bar and updates the visibility state |
| 163 | * of bubbles as needed. |
| 164 | */ |
| 165 | private class StatusBarStateListener implements StatusBarStateController.StateListener { |
| 166 | private int mState; |
| 167 | /** |
| 168 | * Returns the current status bar state. |
| 169 | */ |
| 170 | public int getCurrentState() { |
| 171 | return mState; |
| 172 | } |
| 173 | |
| 174 | @Override |
| 175 | public void onStateChanged(int newState) { |
| 176 | mState = newState; |
| 177 | updateVisibility(); |
| 178 | } |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 179 | } |
| 180 | |
Jason Monk | 27d01a62 | 2018-12-10 15:57:09 -0500 | [diff] [blame] | 181 | @Inject |
Mady Mellor | cfd06c1 | 2019-02-13 14:32:12 -0800 | [diff] [blame] | 182 | public BubbleController(Context context, StatusBarWindowController statusBarWindowController, |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 183 | BubbleData data, ConfigurationController configurationController) { |
| 184 | this(context, statusBarWindowController, data, null /* synchronizer */, |
| 185 | configurationController); |
Issei Suzuki | c038754 | 2019-03-08 17:31:14 +0100 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | public BubbleController(Context context, StatusBarWindowController statusBarWindowController, |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 189 | BubbleData data, @Nullable BubbleStackView.SurfaceSynchronizer synchronizer, |
| 190 | ConfigurationController configurationController) { |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 191 | mContext = context; |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 192 | configurationController.addCallback(this /* configurationListener */); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 193 | |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 194 | mNotificationEntryManager = Dependency.get(NotificationEntryManager.class); |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 195 | mNotificationEntryManager.addNotificationEntryListener(mEntryListener); |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 196 | |
| 197 | try { |
| 198 | mNotificationManagerService = INotificationManager.Stub.asInterface( |
| 199 | ServiceManager.getServiceOrThrow(Context.NOTIFICATION_SERVICE)); |
| 200 | } catch (ServiceManager.ServiceNotFoundException e) { |
| 201 | e.printStackTrace(); |
| 202 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 203 | |
| 204 | mStatusBarWindowController = statusBarWindowController; |
| 205 | mStatusBarStateListener = new StatusBarStateListener(); |
| 206 | Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener); |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 207 | |
| 208 | mActivityTaskManager = ActivityTaskManager.getService(); |
| 209 | mTaskStackListener = new BubbleTaskStackListener(); |
| 210 | ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener); |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 211 | |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 212 | try { |
| 213 | WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener()); |
| 214 | } catch (RemoteException e) { |
| 215 | e.printStackTrace(); |
| 216 | } |
| 217 | |
Mady Mellor | cfd06c1 | 2019-02-13 14:32:12 -0800 | [diff] [blame] | 218 | mBubbleData = data; |
Mark Renouf | 3bc5b36 | 2019-04-05 14:37:59 -0400 | [diff] [blame] | 219 | mBubbleData.setListener(mBubbleDataListener); |
Issei Suzuki | c038754 | 2019-03-08 17:31:14 +0100 | [diff] [blame] | 220 | mSurfaceSynchronizer = synchronizer; |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 221 | } |
| 222 | |
Mark Renouf | 8b6a3c6 | 2019-04-09 10:17:40 -0400 | [diff] [blame] | 223 | /** |
| 224 | * BubbleStackView is lazily created by this method the first time a Bubble is added. This |
| 225 | * method initializes the stack view and adds it to the StatusBar just above the scrim. |
| 226 | */ |
| 227 | private void ensureStackViewCreated() { |
| 228 | if (mStackView == null) { |
| 229 | mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer); |
| 230 | ViewGroup sbv = mStatusBarWindowController.getStatusBarView(); |
| 231 | // TODO(b/130237686): When you expand the shade on top of expanded bubble, there is no |
| 232 | // scrim between bubble and the shade |
| 233 | int bubblePosition = sbv.indexOfChild(sbv.findViewById(R.id.scrim_behind)) + 1; |
| 234 | sbv.addView(mStackView, bubblePosition, |
| 235 | new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT)); |
| 236 | if (mExpandListener != null) { |
| 237 | mStackView.setExpandListener(mExpandListener); |
| 238 | } |
| 239 | mStackView.setOnBlockedListener(this); |
| 240 | } |
| 241 | } |
| 242 | |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 243 | @Override |
| 244 | public void onUiModeChanged() { |
| 245 | if (mStackView != null) { |
Lyn Han | 02cca81 | 2019-04-02 16:27:32 -0700 | [diff] [blame] | 246 | mStackView.onThemeChanged(); |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 247 | } |
| 248 | } |
| 249 | |
| 250 | @Override |
| 251 | public void onOverlayChanged() { |
| 252 | if (mStackView != null) { |
Lyn Han | 02cca81 | 2019-04-02 16:27:32 -0700 | [diff] [blame] | 253 | mStackView.onThemeChanged(); |
Lyn Han | f1c9b8b | 2019-03-14 16:49:48 -0700 | [diff] [blame] | 254 | } |
| 255 | } |
| 256 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 257 | /** |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 258 | * Set a listener to be notified when some states of the bubbles change. |
| 259 | */ |
| 260 | public void setBubbleStateChangeListener(BubbleStateChangeListener listener) { |
| 261 | mStateChangeListener = listener; |
| 262 | } |
| 263 | |
| 264 | /** |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 265 | * Set a listener to be notified of bubble expand events. |
| 266 | */ |
| 267 | public void setExpandListener(BubbleExpandListener listener) { |
Issei Suzuki | ac9fcb7 | 2019-02-04 17:45:57 +0100 | [diff] [blame] | 268 | mExpandListener = ((isExpanding, key) -> { |
| 269 | if (listener != null) { |
| 270 | listener.onBubbleExpandChanged(isExpanding, key); |
| 271 | } |
| 272 | mStatusBarWindowController.setBubbleExpanded(isExpanding); |
| 273 | }); |
Mady Mellor | cd9b130 | 2018-11-06 18:08:04 -0800 | [diff] [blame] | 274 | if (mStackView != null) { |
| 275 | mStackView.setExpandListener(mExpandListener); |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | /** |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 280 | * Whether or not there are bubbles present, regardless of them being visible on the |
| 281 | * screen (e.g. if on AOD). |
| 282 | */ |
| 283 | public boolean hasBubbles() { |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 284 | if (mStackView == null) { |
| 285 | return false; |
| 286 | } |
| 287 | for (Bubble bubble : mBubbleData.getBubbles()) { |
| 288 | if (!bubble.entry.isBubbleDismissed()) { |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 289 | return true; |
| 290 | } |
| 291 | } |
| 292 | return false; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | /** |
| 296 | * Whether the stack of bubbles is expanded or not. |
| 297 | */ |
| 298 | public boolean isStackExpanded() { |
| 299 | return mStackView != null && mStackView.isExpanded(); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Tell the stack of bubbles to collapse. |
| 304 | */ |
| 305 | public void collapseStack() { |
| 306 | if (mStackView != null) { |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 307 | mStackView.collapseStack(); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
| 311 | /** |
Mark Renouf | fec45da | 2019-03-13 13:24:27 -0400 | [diff] [blame] | 312 | * Request the stack expand if needed, then select the specified Bubble as current. |
| 313 | * |
| 314 | * @param notificationKey the notification key for the bubble to be selected |
| 315 | */ |
| 316 | public void expandStackAndSelectBubble(String notificationKey) { |
| 317 | if (mStackView != null && mBubbleData.getBubble(notificationKey) != null) { |
| 318 | mStackView.setExpandedBubble(notificationKey); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | /** |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 323 | * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack. |
| 324 | */ |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 325 | void dismissStack(@DismissReason int reason) { |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 326 | if (mStackView == null) { |
| 327 | return; |
| 328 | } |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 329 | mStackView.stackDismissed(reason); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 330 | |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 331 | updateVisibility(); |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 332 | mNotificationEntryManager.updateNotifications(); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | /** |
Mark Renouf | 041d726 | 2019-02-06 12:09:41 -0500 | [diff] [blame] | 336 | * Directs a back gesture at the bubble stack. When opened, the current expanded bubble |
| 337 | * is forwarded a back key down/up pair. |
| 338 | */ |
| 339 | public void performBackPressIfNeeded() { |
| 340 | if (mStackView != null) { |
| 341 | mStackView.performBackPressIfNeeded(); |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | /** |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 346 | * Adds or updates a bubble associated with the provided notification entry. |
| 347 | * |
Mark Renouf | 8b6a3c6 | 2019-04-09 10:17:40 -0400 | [diff] [blame] | 348 | * @param notif the notification associated with this bubble. |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 349 | */ |
Mark Renouf | f97ed46 | 2019-04-05 13:46:24 -0400 | [diff] [blame] | 350 | void updateBubble(NotificationEntry notif) { |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 351 | if (mStackView != null && mBubbleData.getBubble(notif.key) != null) { |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 352 | // It's an update |
Mark Renouf | f97ed46 | 2019-04-05 13:46:24 -0400 | [diff] [blame] | 353 | mStackView.updateBubble(notif); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 354 | } else { |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 355 | // It's new |
Mark Renouf | 8b6a3c6 | 2019-04-09 10:17:40 -0400 | [diff] [blame] | 356 | ensureStackViewCreated(); |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 357 | mStackView.addBubble(notif); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 358 | } |
Mark Renouf | c6ab73d | 2019-04-09 16:42:22 -0400 | [diff] [blame] | 359 | Bubble bubble = mBubbleData.getBubble(notif.key); |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 360 | if (shouldAutoExpand(notif)) { |
Mark Renouf | c6ab73d | 2019-04-09 16:42:22 -0400 | [diff] [blame] | 361 | mStackView.setSelectedBubble(bubble); |
| 362 | mStackView.setExpanded(true); |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 363 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 364 | updateVisibility(); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /** |
| 368 | * Removes the bubble associated with the {@param uri}. |
Mark Renouf | 658c6bc | 2019-01-30 10:26:54 -0500 | [diff] [blame] | 369 | * <p> |
| 370 | * Must be called from the main thread. |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 371 | */ |
Mark Renouf | 658c6bc | 2019-01-30 10:26:54 -0500 | [diff] [blame] | 372 | @MainThread |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 373 | void removeBubble(String key, int reason) { |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 374 | if (mStackView != null) { |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 375 | mStackView.removeBubble(key, reason); |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 376 | } |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 377 | mNotificationEntryManager.updateNotifications(); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 378 | updateVisibility(); |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 379 | } |
| 380 | |
Mady Mellor | e8e0771 | 2019-01-23 12:45:33 -0800 | [diff] [blame] | 381 | @Override |
| 382 | public void onBubbleBlocked(NotificationEntry entry) { |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 383 | Object[] bubbles = mBubbleData.getBubbles().toArray(); |
Mady Mellor | e8e0771 | 2019-01-23 12:45:33 -0800 | [diff] [blame] | 384 | for (int i = 0; i < bubbles.length; i++) { |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 385 | NotificationEntry e = ((Bubble) bubbles[i]).entry; |
Mady Mellor | e8e0771 | 2019-01-23 12:45:33 -0800 | [diff] [blame] | 386 | boolean samePackage = entry.notification.getPackageName().equals( |
| 387 | e.notification.getPackageName()); |
| 388 | if (samePackage) { |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 389 | removeBubble(entry.key, DISMISS_BLOCKED); |
Mady Mellor | e8e0771 | 2019-01-23 12:45:33 -0800 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | } |
| 393 | |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 394 | @SuppressWarnings("FieldCanBeLocal") |
| 395 | private final NotificationEntryListener mEntryListener = new NotificationEntryListener() { |
| 396 | @Override |
Ned Burns | f81c4c4 | 2019-01-07 14:10:43 -0500 | [diff] [blame] | 397 | public void onPendingEntryAdded(NotificationEntry entry) { |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 398 | if (!areBubblesEnabled(mContext)) { |
| 399 | return; |
| 400 | } |
| 401 | if (shouldAutoBubbleForFlags(mContext, entry) || shouldBubble(entry)) { |
Mady Mellor | 8a1f025 | 2019-04-01 11:31:34 -0700 | [diff] [blame] | 402 | // TODO: handle group summaries? |
| 403 | updateShowInShadeForSuppressNotification(entry); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 404 | } |
| 405 | } |
| 406 | |
| 407 | @Override |
Ned Burns | 1a5e22f | 2019-02-14 15:11:52 -0500 | [diff] [blame] | 408 | public void onEntryInflated(NotificationEntry entry, @InflationFlag int inflatedFlags) { |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 409 | if (!areBubblesEnabled(mContext)) { |
| 410 | return; |
| 411 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 412 | if (entry.isBubble() && mNotificationInterruptionStateProvider.shouldBubbleUp(entry)) { |
Mark Renouf | f97ed46 | 2019-04-05 13:46:24 -0400 | [diff] [blame] | 413 | updateBubble(entry); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 414 | } |
| 415 | } |
| 416 | |
| 417 | @Override |
| 418 | public void onPreEntryUpdated(NotificationEntry entry) { |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 419 | if (!areBubblesEnabled(mContext)) { |
| 420 | return; |
| 421 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 422 | if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry) |
| 423 | && alertAgain(entry, entry.notification.getNotification())) { |
Mady Mellor | 8a1f025 | 2019-04-01 11:31:34 -0700 | [diff] [blame] | 424 | updateShowInShadeForSuppressNotification(entry); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 425 | entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed |
Mark Renouf | f97ed46 | 2019-04-05 13:46:24 -0400 | [diff] [blame] | 426 | updateBubble(entry); |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 427 | mStackView.updateDotVisibility(entry.key); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 428 | } |
| 429 | } |
| 430 | |
| 431 | @Override |
| 432 | public void onEntryRemoved(NotificationEntry entry, |
| 433 | @Nullable NotificationVisibility visibility, |
| 434 | boolean removedByUser) { |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 435 | if (!areBubblesEnabled(mContext)) { |
| 436 | return; |
| 437 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 438 | entry.setShowInShadeWhenBubble(false); |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 439 | if (mStackView != null) { |
| 440 | mStackView.updateDotVisibility(entry.key); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 441 | } |
| 442 | if (!removedByUser) { |
| 443 | // This was a cancel so we should remove the bubble |
Mark Renouf | 08bc42a | 2019-03-07 13:01:59 -0500 | [diff] [blame] | 444 | removeBubble(entry.key, DISMISS_NOTIF_CANCEL); |
Ned Burns | 01e3821 | 2019-01-03 16:32:52 -0500 | [diff] [blame] | 445 | } |
| 446 | } |
| 447 | }; |
| 448 | |
Mark Renouf | 3bc5b36 | 2019-04-05 14:37:59 -0400 | [diff] [blame] | 449 | private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() { |
| 450 | @Override |
| 451 | public void onBubbleAdded(Bubble bubble) { |
| 452 | |
| 453 | } |
| 454 | |
| 455 | @Override |
| 456 | public void onBubbleRemoved(Bubble bubble, int reason) { |
| 457 | |
| 458 | } |
| 459 | |
| 460 | public void onBubbleUpdated(Bubble bubble) { |
| 461 | |
| 462 | } |
| 463 | |
| 464 | @Override |
| 465 | public void onOrderChanged(List<Bubble> bubbles) { |
| 466 | |
| 467 | } |
| 468 | |
| 469 | @Override |
| 470 | public void onSelectionChanged(Bubble selectedBubble) { |
| 471 | |
| 472 | } |
| 473 | |
| 474 | @Override |
| 475 | public void onExpandedChanged(boolean expanded) { |
| 476 | |
| 477 | } |
| 478 | |
| 479 | @Override |
| 480 | public void showFlyoutText(Bubble bubble, String text) { |
| 481 | |
| 482 | } |
| 483 | |
| 484 | @Override |
| 485 | public void apply() { |
| 486 | |
| 487 | } |
| 488 | }; |
| 489 | |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 490 | /** |
| 491 | * Lets any listeners know if bubble state has changed. |
| 492 | */ |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 493 | private void updateBubblesShowing() { |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 494 | if (mStackView == null) { |
| 495 | return; |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 496 | } |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 497 | |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 498 | boolean hadBubbles = mStatusBarWindowController.getBubblesShowing(); |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 499 | boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE; |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 500 | mStatusBarWindowController.setBubblesShowing(hasBubblesShowing); |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 501 | if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) { |
| 502 | mStateChangeListener.onHasBubblesChanged(hasBubblesShowing); |
| 503 | } |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | /** |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 507 | * Updates the visibility of the bubbles based on current state. |
| 508 | * Does not un-bubble, just hides or un-hides. Will notify any |
| 509 | * {@link BubbleStateChangeListener}s if visibility changes. |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 510 | */ |
Mady Mellor | 3f2efdb | 2018-11-21 11:30:45 -0800 | [diff] [blame] | 511 | public void updateVisibility() { |
| 512 | if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) { |
| 513 | // Bubbles only appear in unlocked shade |
| 514 | mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE); |
| 515 | } else if (mStackView != null) { |
| 516 | mStackView.setVisibility(INVISIBLE); |
| 517 | collapseStack(); |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 518 | } |
Mady Mellor | d1c78b26 | 2018-11-06 18:04:40 -0800 | [diff] [blame] | 519 | updateBubblesShowing(); |
| 520 | } |
| 521 | |
| 522 | /** |
| 523 | * Rect indicating the touchable region for the bubble stack / expanded stack. |
| 524 | */ |
| 525 | public Rect getTouchableRegion() { |
| 526 | if (mStackView == null || mStackView.getVisibility() != VISIBLE) { |
| 527 | return null; |
| 528 | } |
| 529 | mStackView.getBoundsOnScreen(mTempRect); |
| 530 | return mTempRect; |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 531 | } |
| 532 | |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 533 | @VisibleForTesting |
| 534 | BubbleStackView getStackView() { |
| 535 | return mStackView; |
| 536 | } |
| 537 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 538 | /** |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 539 | * Whether the notification has been developer configured to bubble and is allowed by the user. |
| 540 | */ |
Mady Mellor | c18ba96 | 2019-01-29 11:11:56 -0800 | [diff] [blame] | 541 | @VisibleForTesting |
| 542 | protected boolean shouldBubble(NotificationEntry entry) { |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 543 | StatusBarNotification n = entry.notification; |
Mady Mellor | c39b4ae | 2019-01-09 17:11:37 -0800 | [diff] [blame] | 544 | boolean hasOverlayIntent = n.getNotification().getBubbleMetadata() != null |
| 545 | && n.getNotification().getBubbleMetadata().getIntent() != null; |
Julia Reynolds | 4509ce7 | 2019-01-31 13:12:43 -0500 | [diff] [blame] | 546 | return hasOverlayIntent && entry.canBubble; |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 547 | } |
| 548 | |
| 549 | /** |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 550 | * Whether the notification should automatically bubble or not. Gated by secure settings flags. |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 551 | */ |
Mady Mellor | 9bad224 | 2019-01-28 11:21:51 -0800 | [diff] [blame] | 552 | @VisibleForTesting |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 553 | protected boolean shouldAutoBubbleForFlags(Context context, NotificationEntry entry) { |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 554 | if (entry.isBubbleDismissed()) { |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 555 | return false; |
| 556 | } |
Mady Mellor | b4991e6 | 2019-01-10 15:14:51 -0800 | [diff] [blame] | 557 | StatusBarNotification n = entry.notification; |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 558 | |
| 559 | boolean autoBubbleMessages = shouldAutoBubbleMessages(context) || DEBUG_ENABLE_AUTO_BUBBLE; |
| 560 | boolean autoBubbleOngoing = shouldAutoBubbleOngoing(context) || DEBUG_ENABLE_AUTO_BUBBLE; |
| 561 | boolean autoBubbleAll = shouldAutoBubbleAll(context) || DEBUG_ENABLE_AUTO_BUBBLE; |
| 562 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 563 | boolean hasRemoteInput = false; |
| 564 | if (n.getNotification().actions != null) { |
| 565 | for (Notification.Action action : n.getNotification().actions) { |
| 566 | if (action.getRemoteInputs() != null) { |
| 567 | hasRemoteInput = true; |
| 568 | break; |
| 569 | } |
| 570 | } |
| 571 | } |
Mady Mellor | 711f956 | 2018-12-05 14:53:46 -0800 | [diff] [blame] | 572 | boolean isCall = Notification.CATEGORY_CALL.equals(n.getNotification().category) |
| 573 | && n.isOngoing(); |
| 574 | boolean isMusic = n.getNotification().hasMediaSession(); |
| 575 | boolean isImportantOngoing = isMusic || isCall; |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 576 | |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 577 | Class<? extends Notification.Style> style = n.getNotification().getNotificationStyle(); |
Mady Mellor | e317537 | 2018-12-04 17:05:11 -0800 | [diff] [blame] | 578 | boolean isMessageType = Notification.CATEGORY_MESSAGE.equals(n.getNotification().category); |
| 579 | boolean isMessageStyle = Notification.MessagingStyle.class.equals(style); |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 580 | return (((isMessageType && hasRemoteInput) || isMessageStyle) && autoBubbleMessages) |
Mady Mellor | 711f956 | 2018-12-05 14:53:46 -0800 | [diff] [blame] | 581 | || (isImportantOngoing && autoBubbleOngoing) |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 582 | || autoBubbleAll; |
| 583 | } |
| 584 | |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 585 | private boolean shouldAutoExpand(NotificationEntry entry) { |
| 586 | Notification.BubbleMetadata metadata = entry.getBubbleMetadata(); |
| 587 | return metadata != null && metadata.getAutoExpandBubble() |
| 588 | && isForegroundApp(entry.notification.getPackageName()); |
| 589 | } |
| 590 | |
Mady Mellor | 8a1f025 | 2019-04-01 11:31:34 -0700 | [diff] [blame] | 591 | private void updateShowInShadeForSuppressNotification(NotificationEntry entry) { |
| 592 | boolean suppressNotification = entry.getBubbleMetadata() != null |
| 593 | && entry.getBubbleMetadata().getSuppressNotification() |
| 594 | && isForegroundApp(entry.notification.getPackageName()); |
| 595 | entry.setShowInShadeWhenBubble(!suppressNotification); |
| 596 | } |
| 597 | |
Mady Mellor | e80930e | 2019-03-21 16:00:45 -0700 | [diff] [blame] | 598 | /** |
| 599 | * Return true if the applications with the package name is running in foreground. |
| 600 | * |
| 601 | * @param pkgName application package name. |
| 602 | */ |
| 603 | private boolean isForegroundApp(String pkgName) { |
| 604 | ActivityManager am = mContext.getSystemService(ActivityManager.class); |
| 605 | List<RunningTaskInfo> tasks = am.getRunningTasks(1 /* maxNum */); |
| 606 | return !tasks.isEmpty() && pkgName.equals(tasks.get(0).topActivity.getPackageName()); |
| 607 | } |
| 608 | |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 609 | /** |
| 610 | * This task stack listener is responsible for responding to tasks moved to the front |
| 611 | * which are on the default (main) display. When this happens, expanded bubbles must be |
| 612 | * collapsed so the user may interact with the app which was just moved to the front. |
| 613 | * <p> |
| 614 | * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches |
| 615 | * these calls via a main thread Handler. |
| 616 | */ |
| 617 | @MainThread |
| 618 | private class BubbleTaskStackListener extends TaskStackChangeListener { |
| 619 | |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 620 | @Override |
Mark Renouf | c808f069 | 2019-02-07 15:20:37 -0500 | [diff] [blame] | 621 | public void onTaskMovedToFront(RunningTaskInfo taskInfo) { |
| 622 | if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) { |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 623 | mStackView.collapseStack(); |
| 624 | } |
| 625 | } |
| 626 | |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 627 | @Override |
Mark Renouf | a12e876 | 2019-03-07 15:43:01 -0500 | [diff] [blame] | 628 | public void onActivityLaunchOnSecondaryDisplayRerouted() { |
Mark Renouf | cecc77b | 2019-01-30 16:32:24 -0500 | [diff] [blame] | 629 | if (mStackView != null) { |
| 630 | mStackView.collapseStack(); |
| 631 | } |
| 632 | } |
| 633 | } |
| 634 | |
Mady Mellor | ceced17 | 2018-11-27 11:18:39 -0800 | [diff] [blame] | 635 | private static boolean shouldAutoBubbleMessages(Context context) { |
| 636 | return Settings.Secure.getInt(context.getContentResolver(), |
| 637 | ENABLE_AUTO_BUBBLE_MESSAGES, 0) != 0; |
| 638 | } |
| 639 | |
| 640 | private static boolean shouldAutoBubbleOngoing(Context context) { |
| 641 | return Settings.Secure.getInt(context.getContentResolver(), |
| 642 | ENABLE_AUTO_BUBBLE_ONGOING, 0) != 0; |
| 643 | } |
| 644 | |
| 645 | private static boolean shouldAutoBubbleAll(Context context) { |
| 646 | return Settings.Secure.getInt(context.getContentResolver(), |
| 647 | ENABLE_AUTO_BUBBLE_ALL, 0) != 0; |
Mady Mellor | 5549dd2 | 2018-11-06 18:07:34 -0800 | [diff] [blame] | 648 | } |
Mark Renouf | 89b1a4a | 2018-12-04 14:59:45 -0500 | [diff] [blame] | 649 | |
Mady Mellor | 3dff9e6 | 2019-02-05 18:12:53 -0800 | [diff] [blame] | 650 | static boolean shouldUseContentIntent(Context context) { |
Mark Renouf | 89b1a4a | 2018-12-04 14:59:45 -0500 | [diff] [blame] | 651 | return Settings.Secure.getInt(context.getContentResolver(), |
| 652 | ENABLE_BUBBLE_CONTENT_INTENT, 0) != 0; |
| 653 | } |
Mady Mellor | f6e3ac0 | 2019-01-29 10:37:52 -0800 | [diff] [blame] | 654 | |
| 655 | private static boolean areBubblesEnabled(Context context) { |
| 656 | return Settings.Secure.getInt(context.getContentResolver(), |
| 657 | ENABLE_BUBBLES, 1) != 0; |
| 658 | } |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 659 | |
Joshua Tsuji | 010c2b1 | 2019-02-25 18:11:25 -0500 | [diff] [blame] | 660 | /** Default stiffness to use for bubble physics animations. */ |
| 661 | public static int getBubbleStiffness(Context context, int defaultStiffness) { |
| 662 | return Settings.Secure.getInt( |
| 663 | context.getContentResolver(), BUBBLE_STIFFNESS, defaultStiffness); |
| 664 | } |
| 665 | |
| 666 | /** Default bounciness/damping ratio to use for bubble physics animations. */ |
| 667 | public static float getBubbleBounciness(Context context, float defaultBounciness) { |
| 668 | return Settings.Secure.getInt( |
| 669 | context.getContentResolver(), |
| 670 | BUBBLE_BOUNCINESS, |
| 671 | (int) (defaultBounciness * 100)) / 100f; |
| 672 | } |
| 673 | |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 674 | /** PinnedStackListener that dispatches IME visibility updates to the stack. */ |
| 675 | private class BubblesImeListener extends IPinnedStackListener.Stub { |
| 676 | |
| 677 | @Override |
| 678 | public void onListenerRegistered(IPinnedStackController controller) throws RemoteException { |
| 679 | } |
| 680 | |
| 681 | @Override |
| 682 | public void onMovementBoundsChanged(Rect insetBounds, Rect normalBounds, |
| 683 | Rect animatingBounds, boolean fromImeAdjustment, boolean fromShelfAdjustment, |
| 684 | int displayRotation) throws RemoteException {} |
| 685 | |
| 686 | @Override |
Joshua Tsuji | d942283 | 2019-03-05 13:32:37 -0500 | [diff] [blame] | 687 | public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) { |
| 688 | if (mStackView != null && mStackView.getBubbleCount() > 0) { |
| 689 | mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight)); |
Joshua Tsuji | a19515f | 2019-02-13 18:02:29 -0500 | [diff] [blame] | 690 | } |
| 691 | } |
| 692 | |
| 693 | @Override |
| 694 | public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight) |
| 695 | throws RemoteException {} |
| 696 | |
| 697 | @Override |
| 698 | public void onMinimizedStateChanged(boolean isMinimized) throws RemoteException {} |
| 699 | |
| 700 | @Override |
| 701 | public void onActionsChanged(ParceledListSlice actions) throws RemoteException {} |
| 702 | } |
Mady Mellor | c3d6f7d | 2018-11-07 09:36:56 -0800 | [diff] [blame] | 703 | } |