blob: 9d9c88f2c6ca629a3eb5b5c3e22e61aec5128076 [file] [log] [blame]
Mady Mellorc3d6f7d2018-11-07 09:36:56 -08001/*
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
17package com.android.systemui.bubbles;
18
Mady Mellor390bff42019-04-05 15:09:01 -070019import static android.view.Display.DEFAULT_DISPLAY;
20import static android.view.Display.INVALID_DISPLAY;
Mady Mellord1c78b262018-11-06 18:04:40 -080021import static android.view.View.INVISIBLE;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080022import static android.view.View.VISIBLE;
Joshua Tsujib1a796b2019-01-16 15:43:12 -080023import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080024
Mady Mellor3f2efdb2018-11-21 11:30:45 -080025import static com.android.systemui.statusbar.StatusBarState.SHADE;
26import static com.android.systemui.statusbar.notification.NotificationAlertingManager.alertAgain;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080027
Mark Renouf08bc42a2019-03-07 13:01:59 -050028import static java.lang.annotation.RetentionPolicy.SOURCE;
29
Mady Mellorb4991e62019-01-10 15:14:51 -080030import android.annotation.Nullable;
Mady Mellore80930e2019-03-21 16:00:45 -070031import android.app.ActivityManager;
Mark Renoufc808f062019-02-07 15:20:37 -050032import android.app.ActivityManager.RunningTaskInfo;
Mark Renoufcecc77b2019-01-30 16:32:24 -050033import android.app.ActivityTaskManager;
34import android.app.IActivityTaskManager;
Mady Mellorb4991e62019-01-10 15:14:51 -080035import android.app.INotificationManager;
Mady Mellor5549dd22018-11-06 18:07:34 -080036import android.app.Notification;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080037import android.content.Context;
Joshua Tsujia19515f2019-02-13 18:02:29 -050038import android.content.pm.ParceledListSlice;
Joshua Tsujif418f9e2019-04-04 17:09:53 -040039import android.content.res.Configuration;
Mady Mellord1c78b262018-11-06 18:04:40 -080040import android.graphics.Rect;
Mark Renoufcecc77b2019-01-30 16:32:24 -050041import android.os.RemoteException;
Mady Mellorb4991e62019-01-10 15:14:51 -080042import android.os.ServiceManager;
Mady Mellorceced172018-11-27 11:18:39 -080043import android.provider.Settings;
Mady Mellor5549dd22018-11-06 18:07:34 -080044import android.service.notification.StatusBarNotification;
Mark Renoufcecc77b2019-01-30 16:32:24 -050045import android.view.Display;
Joshua Tsujia19515f2019-02-13 18:02:29 -050046import android.view.IPinnedStackController;
47import android.view.IPinnedStackListener;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080048import android.view.ViewGroup;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080049import android.widget.FrameLayout;
50
Mark Renouf08bc42a2019-03-07 13:01:59 -050051import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050052import androidx.annotation.MainThread;
53
Mady Mellorebdbbb92018-11-15 14:36:48 -080054import com.android.internal.annotations.VisibleForTesting;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080055import com.android.internal.statusbar.NotificationVisibility;
Ned Burns01e38212019-01-03 16:32:52 -050056import com.android.systemui.Dependency;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080057import com.android.systemui.R;
Beverly8fdb5332019-02-04 14:29:49 -050058import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050059import com.android.systemui.shared.system.ActivityManagerWrapper;
60import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050061import com.android.systemui.shared.system.WindowManagerWrapper;
Ned Burns01e38212019-01-03 16:32:52 -050062import com.android.systemui.statusbar.notification.NotificationEntryListener;
63import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080064import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050065import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Ned Burns1a5e22f2019-02-14 15:11:52 -050066import com.android.systemui.statusbar.notification.row.NotificationContentInflater.InflationFlag;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080067import com.android.systemui.statusbar.phone.StatusBarWindowController;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070068import com.android.systemui.statusbar.policy.ConfigurationController;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080069
Mark Renouf08bc42a2019-03-07 13:01:59 -050070import java.lang.annotation.Retention;
Mady Mellore80930e2019-03-21 16:00:45 -070071import java.util.List;
Mark Renouf08bc42a2019-03-07 13:01:59 -050072
Jason Monk27d01a622018-12-10 15:57:09 -050073import javax.inject.Inject;
74import javax.inject.Singleton;
75
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080076/**
77 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
78 * Bubbles can be expanded to show more content.
79 *
80 * The controller manages addition, removal, and visible state of bubbles on screen.
81 */
Jason Monk27d01a622018-12-10 15:57:09 -050082@Singleton
Mark Renouf71a3af62019-04-08 15:02:54 -040083public class BubbleController implements ConfigurationController.ConfigurationListener {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080084
85 private static final String TAG = "BubbleController";
86
Mark Renouf08bc42a2019-03-07 13:01:59 -050087 @Retention(SOURCE)
88 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
89 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION})
90 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070091
Mark Renouf08bc42a2019-03-07 13:01:59 -050092 static final int DISMISS_USER_GESTURE = 1;
93 static final int DISMISS_AGED = 2;
94 static final int DISMISS_TASK_FINISHED = 3;
95 static final int DISMISS_BLOCKED = 4;
96 static final int DISMISS_NOTIF_CANCEL = 5;
97 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
98
Joshua Tsuji25a4b7b2019-03-22 14:11:06 -040099 static final int MAX_BUBBLES = 5; // TODO: actually enforce this
100
Mady Mellor5549dd22018-11-06 18:07:34 -0800101 // Enables some subset of notifs to automatically become bubbles
Ned Burns01e38212019-01-03 16:32:52 -0500102 private static final boolean DEBUG_ENABLE_AUTO_BUBBLE = false;
Mady Mellor5549dd22018-11-06 18:07:34 -0800103
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800104 /** Flag to enable or disable the entire feature */
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800105 private static final String ENABLE_BUBBLES = "experiment_enable_bubbles";
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800106 /** Auto bubble flags set whether different notif types should be presented as a bubble */
Mady Mellorceced172018-11-27 11:18:39 -0800107 private static final String ENABLE_AUTO_BUBBLE_MESSAGES = "experiment_autobubble_messaging";
108 private static final String ENABLE_AUTO_BUBBLE_ONGOING = "experiment_autobubble_ongoing";
109 private static final String ENABLE_AUTO_BUBBLE_ALL = "experiment_autobubble_all";
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800110
111 /** Use an activityView for an auto-bubbled notifs if it has an appropriate content intent */
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500112 private static final String ENABLE_BUBBLE_CONTENT_INTENT = "experiment_bubble_content_intent";
Mady Mellorceced172018-11-27 11:18:39 -0800113
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500114 private static final String BUBBLE_STIFFNESS = "experiment_bubble_stiffness";
115 private static final String BUBBLE_BOUNCINESS = "experiment_bubble_bounciness";
116
Ned Burns01e38212019-01-03 16:32:52 -0500117 private final Context mContext;
118 private final NotificationEntryManager mNotificationEntryManager;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500119 private final IActivityTaskManager mActivityTaskManager;
120 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellord1c78b262018-11-06 18:04:40 -0800121 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800122 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100123 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800124
Mady Mellor3dff9e62019-02-05 18:12:53 -0800125 private BubbleData mBubbleData;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800126 private BubbleStackView mStackView;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800127
128 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500129 private final StatusBarWindowController mStatusBarWindowController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800130 private StatusBarStateListener mStatusBarStateListener;
131
132 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider =
133 Dependency.get(NotificationInterruptionStateProvider.class);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800134
Mady Mellorb4991e62019-01-10 15:14:51 -0800135 private INotificationManager mNotificationManagerService;
136
Mady Mellord1c78b262018-11-06 18:04:40 -0800137 // Used for determining view rect for touch interaction
138 private Rect mTempRect = new Rect();
139
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400140 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
141 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
142
Mady Mellor5549dd22018-11-06 18:07:34 -0800143 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800144 * Listener to be notified when some states of the bubbles change.
145 */
146 public interface BubbleStateChangeListener {
147 /**
148 * Called when the stack has bubbles or no longer has bubbles.
149 */
150 void onHasBubblesChanged(boolean hasBubbles);
151 }
152
Mady Mellorcd9b1302018-11-06 18:08:04 -0800153 /**
154 * Listener to find out about stack expansion / collapse events.
155 */
156 public interface BubbleExpandListener {
157 /**
158 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700159 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800160 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800161 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800162 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800163 void onBubbleExpandChanged(boolean isExpanding, String key);
164 }
165
166 /**
167 * Listens for the current state of the status bar and updates the visibility state
168 * of bubbles as needed.
169 */
170 private class StatusBarStateListener implements StatusBarStateController.StateListener {
171 private int mState;
172 /**
173 * Returns the current status bar state.
174 */
175 public int getCurrentState() {
176 return mState;
177 }
178
179 @Override
180 public void onStateChanged(int newState) {
181 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400182 boolean shouldCollapse = (mState != SHADE);
183 if (shouldCollapse) {
184 collapseStack();
185 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800186 updateVisibility();
187 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800188 }
189
Jason Monk27d01a622018-12-10 15:57:09 -0500190 @Inject
Mady Mellorcfd06c12019-02-13 14:32:12 -0800191 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700192 BubbleData data, ConfigurationController configurationController) {
193 this(context, statusBarWindowController, data, null /* synchronizer */,
194 configurationController);
Issei Suzukic0387542019-03-08 17:31:14 +0100195 }
196
197 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700198 BubbleData data, @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
199 ConfigurationController configurationController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800200 mContext = context;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700201 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800202
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800203 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class);
Ned Burns01e38212019-01-03 16:32:52 -0500204 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorb4991e62019-01-10 15:14:51 -0800205
206 try {
207 mNotificationManagerService = INotificationManager.Stub.asInterface(
208 ServiceManager.getServiceOrThrow(Context.NOTIFICATION_SERVICE));
209 } catch (ServiceManager.ServiceNotFoundException e) {
210 e.printStackTrace();
211 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800212
213 mStatusBarWindowController = statusBarWindowController;
214 mStatusBarStateListener = new StatusBarStateListener();
215 Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500216
217 mActivityTaskManager = ActivityTaskManager.getService();
218 mTaskStackListener = new BubbleTaskStackListener();
219 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800220
Joshua Tsujia19515f2019-02-13 18:02:29 -0500221 try {
222 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
223 } catch (RemoteException e) {
224 e.printStackTrace();
225 }
226
Mady Mellorcfd06c12019-02-13 14:32:12 -0800227 mBubbleData = data;
Mark Renouf3bc5b362019-04-05 14:37:59 -0400228 mBubbleData.setListener(mBubbleDataListener);
Issei Suzukic0387542019-03-08 17:31:14 +0100229 mSurfaceSynchronizer = synchronizer;
Mady Mellor5549dd22018-11-06 18:07:34 -0800230 }
231
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400232 /**
233 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
234 * method initializes the stack view and adds it to the StatusBar just above the scrim.
235 */
236 private void ensureStackViewCreated() {
237 if (mStackView == null) {
238 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
239 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
240 // TODO(b/130237686): When you expand the shade on top of expanded bubble, there is no
241 // scrim between bubble and the shade
242 int bubblePosition = sbv.indexOfChild(sbv.findViewById(R.id.scrim_behind)) + 1;
243 sbv.addView(mStackView, bubblePosition,
244 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
245 if (mExpandListener != null) {
246 mStackView.setExpandListener(mExpandListener);
247 }
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400248 }
249 }
250
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700251 @Override
252 public void onUiModeChanged() {
253 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700254 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700255 }
256 }
257
258 @Override
259 public void onOverlayChanged() {
260 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700261 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700262 }
263 }
264
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400265 @Override
266 public void onConfigChanged(Configuration newConfig) {
267 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
268 mStackView.onOrientationChanged();
269 mOrientation = newConfig.orientation;
270 }
271 }
272
Mady Mellor5549dd22018-11-06 18:07:34 -0800273 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800274 * Set a listener to be notified when some states of the bubbles change.
275 */
276 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
277 mStateChangeListener = listener;
278 }
279
280 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800281 * Set a listener to be notified of bubble expand events.
282 */
283 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100284 mExpandListener = ((isExpanding, key) -> {
285 if (listener != null) {
286 listener.onBubbleExpandChanged(isExpanding, key);
287 }
288 mStatusBarWindowController.setBubbleExpanded(isExpanding);
289 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800290 if (mStackView != null) {
291 mStackView.setExpandListener(mExpandListener);
292 }
293 }
294
295 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800296 * Whether or not there are bubbles present, regardless of them being visible on the
297 * screen (e.g. if on AOD).
298 */
299 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800300 if (mStackView == null) {
301 return false;
302 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400303 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800304 }
305
306 /**
307 * Whether the stack of bubbles is expanded or not.
308 */
309 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400310 return mBubbleData.isExpanded();
311 }
312
313 /**
314 * Tell the stack of bubbles to expand.
315 */
316 public void expandStack() {
317 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800318 }
319
320 /**
321 * Tell the stack of bubbles to collapse.
322 */
323 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400324 mBubbleData.setExpanded(false /* expanded */);
325 }
326
327 void selectBubble(Bubble bubble) {
328 mBubbleData.setSelectedBubble(bubble);
329 }
330
331 @VisibleForTesting
332 void selectBubble(String key) {
333 Bubble bubble = mBubbleData.getBubbleWithKey(key);
334 selectBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800335 }
336
337 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400338 * Request the stack expand if needed, then select the specified Bubble as current.
339 *
340 * @param notificationKey the notification key for the bubble to be selected
341 */
342 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400343 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
344 if (bubble != null) {
345 mBubbleData.setSelectedBubble(bubble);
346 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400347 }
348 }
349
350 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800351 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
352 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500353 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400354 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800355 }
356
357 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500358 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
359 * is forwarded a back key down/up pair.
360 */
361 public void performBackPressIfNeeded() {
362 if (mStackView != null) {
363 mStackView.performBackPressIfNeeded();
364 }
365 }
366
367 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800368 * Adds or updates a bubble associated with the provided notification entry.
369 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400370 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800371 */
Mark Renouff97ed462019-04-05 13:46:24 -0400372 void updateBubble(NotificationEntry notif) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400373 mBubbleData.notificationEntryUpdated(notif);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800374 }
375
376 /**
377 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500378 * <p>
379 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800380 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500381 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500382 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400383 // TEMP: refactor to change this to pass entry
384 Bubble bubble = mBubbleData.getBubbleWithKey(key);
385 if (bubble != null) {
386 mBubbleData.notificationEntryRemoved(bubble.entry, reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800387 }
388 }
389
Ned Burns01e38212019-01-03 16:32:52 -0500390 @SuppressWarnings("FieldCanBeLocal")
391 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
392 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500393 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800394 if (!areBubblesEnabled(mContext)) {
395 return;
396 }
397 if (shouldAutoBubbleForFlags(mContext, entry) || shouldBubble(entry)) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700398 // TODO: handle group summaries?
399 updateShowInShadeForSuppressNotification(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800400 }
401 }
402
403 @Override
Ned Burns1a5e22f2019-02-14 15:11:52 -0500404 public void onEntryInflated(NotificationEntry entry, @InflationFlag int inflatedFlags) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800405 if (!areBubblesEnabled(mContext)) {
406 return;
407 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800408 if (entry.isBubble() && mNotificationInterruptionStateProvider.shouldBubbleUp(entry)) {
Mark Renouff97ed462019-04-05 13:46:24 -0400409 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800410 }
411 }
412
413 @Override
414 public void onPreEntryUpdated(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800415 if (!areBubblesEnabled(mContext)) {
416 return;
417 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800418 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
419 && alertAgain(entry, entry.notification.getNotification())) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700420 updateShowInShadeForSuppressNotification(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800421 entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed
Mark Renouff97ed462019-04-05 13:46:24 -0400422 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800423 }
424 }
425
426 @Override
427 public void onEntryRemoved(NotificationEntry entry,
428 @Nullable NotificationVisibility visibility,
429 boolean removedByUser) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800430 if (!areBubblesEnabled(mContext)) {
431 return;
432 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800433 entry.setShowInShadeWhenBubble(false);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800434 if (mStackView != null) {
435 mStackView.updateDotVisibility(entry.key);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800436 }
437 if (!removedByUser) {
438 // This was a cancel so we should remove the bubble
Mark Renouf08bc42a2019-03-07 13:01:59 -0500439 removeBubble(entry.key, DISMISS_NOTIF_CANCEL);
Ned Burns01e38212019-01-03 16:32:52 -0500440 }
441 }
442 };
443
Mark Renouf71a3af62019-04-08 15:02:54 -0400444 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400445 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400446
Mark Renouf3bc5b362019-04-05 14:37:59 -0400447 @Override
448 public void onBubbleAdded(Bubble bubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400449 ensureStackViewCreated();
450 mStackView.addBubble(bubble);
Mark Renouf3bc5b362019-04-05 14:37:59 -0400451 }
452
453 @Override
454 public void onBubbleRemoved(Bubble bubble, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400455 if (mStackView != null) {
456 mStackView.removeBubble(bubble);
457 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400458 }
459
460 public void onBubbleUpdated(Bubble bubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400461 if (mStackView != null) {
462 mStackView.updateBubble(bubble);
463 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400464 }
465
466 @Override
467 public void onOrderChanged(List<Bubble> bubbles) {
Mark Renouf3bc5b362019-04-05 14:37:59 -0400468 }
469
470 @Override
471 public void onSelectionChanged(Bubble selectedBubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400472 if (mStackView != null) {
473 mStackView.setSelectedBubble(selectedBubble);
474 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400475 }
476
477 @Override
478 public void onExpandedChanged(boolean expanded) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400479 if (mStackView != null) {
480 mStackView.setExpanded(expanded);
481 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400482 }
483
484 @Override
485 public void showFlyoutText(Bubble bubble, String text) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400486 if (mStackView != null) {
487 mStackView.animateInFlyoutForBubble(bubble);
488 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400489 }
490
491 @Override
492 public void apply() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400493 mNotificationEntryManager.updateNotifications();
494 updateVisibility();
Mark Renouf3bc5b362019-04-05 14:37:59 -0400495 }
496 };
497
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800498 /**
499 * Lets any listeners know if bubble state has changed.
500 */
Mady Mellord1c78b262018-11-06 18:04:40 -0800501 private void updateBubblesShowing() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800502 if (mStackView == null) {
503 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800504 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800505
Mady Mellord1c78b262018-11-06 18:04:40 -0800506 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800507 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
Mady Mellord1c78b262018-11-06 18:04:40 -0800508 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
Mady Mellord1c78b262018-11-06 18:04:40 -0800509 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
510 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
511 }
Mady Mellor5549dd22018-11-06 18:07:34 -0800512 }
513
514 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800515 * Updates the visibility of the bubbles based on current state.
516 * Does not un-bubble, just hides or un-hides. Will notify any
517 * {@link BubbleStateChangeListener}s if visibility changes.
Mady Mellor5549dd22018-11-06 18:07:34 -0800518 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800519 public void updateVisibility() {
520 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
521 // Bubbles only appear in unlocked shade
522 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
523 } else if (mStackView != null) {
524 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800525 }
Mady Mellord1c78b262018-11-06 18:04:40 -0800526 updateBubblesShowing();
527 }
528
529 /**
530 * Rect indicating the touchable region for the bubble stack / expanded stack.
531 */
532 public Rect getTouchableRegion() {
533 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
534 return null;
535 }
536 mStackView.getBoundsOnScreen(mTempRect);
537 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800538 }
539
Mady Mellor390bff42019-04-05 15:09:01 -0700540 /**
541 * The display id of the expanded view, if the stack is expanded and not occluded by the
542 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
543 */
544 public int getExpandedDisplayId(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -0700545 if (mStackView == null) {
546 return INVALID_DISPLAY;
547 }
Mady Mellor390bff42019-04-05 15:09:01 -0700548 boolean defaultDisplay = context.getDisplay() != null
549 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
550 Bubble b = mStackView.getExpandedBubble();
551 if (defaultDisplay && b != null && isStackExpanded()
552 && !mStatusBarWindowController.getPanelExpanded()) {
553 return b.expandedView.getVirtualDisplayId();
554 }
555 return INVALID_DISPLAY;
556 }
557
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800558 @VisibleForTesting
559 BubbleStackView getStackView() {
560 return mStackView;
561 }
562
Mady Mellor5549dd22018-11-06 18:07:34 -0800563 /**
Mady Mellorb4991e62019-01-10 15:14:51 -0800564 * Whether the notification has been developer configured to bubble and is allowed by the user.
565 */
Mady Mellorc18ba962019-01-29 11:11:56 -0800566 @VisibleForTesting
567 protected boolean shouldBubble(NotificationEntry entry) {
Mady Mellorb4991e62019-01-10 15:14:51 -0800568 StatusBarNotification n = entry.notification;
Mady Mellorc39b4ae2019-01-09 17:11:37 -0800569 boolean hasOverlayIntent = n.getNotification().getBubbleMetadata() != null
570 && n.getNotification().getBubbleMetadata().getIntent() != null;
Julia Reynolds4509ce72019-01-31 13:12:43 -0500571 return hasOverlayIntent && entry.canBubble;
Mady Mellorb4991e62019-01-10 15:14:51 -0800572 }
573
574 /**
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800575 * Whether the notification should automatically bubble or not. Gated by secure settings flags.
Mady Mellor5549dd22018-11-06 18:07:34 -0800576 */
Mady Mellor9bad2242019-01-28 11:21:51 -0800577 @VisibleForTesting
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800578 protected boolean shouldAutoBubbleForFlags(Context context, NotificationEntry entry) {
Mady Mellorceced172018-11-27 11:18:39 -0800579 if (entry.isBubbleDismissed()) {
Mady Mellor5549dd22018-11-06 18:07:34 -0800580 return false;
581 }
Mady Mellorb4991e62019-01-10 15:14:51 -0800582 StatusBarNotification n = entry.notification;
Mady Mellorceced172018-11-27 11:18:39 -0800583
584 boolean autoBubbleMessages = shouldAutoBubbleMessages(context) || DEBUG_ENABLE_AUTO_BUBBLE;
585 boolean autoBubbleOngoing = shouldAutoBubbleOngoing(context) || DEBUG_ENABLE_AUTO_BUBBLE;
586 boolean autoBubbleAll = shouldAutoBubbleAll(context) || DEBUG_ENABLE_AUTO_BUBBLE;
587
Mady Mellor5549dd22018-11-06 18:07:34 -0800588 boolean hasRemoteInput = false;
589 if (n.getNotification().actions != null) {
590 for (Notification.Action action : n.getNotification().actions) {
591 if (action.getRemoteInputs() != null) {
592 hasRemoteInput = true;
593 break;
594 }
595 }
596 }
Mady Mellor711f9562018-12-05 14:53:46 -0800597 boolean isCall = Notification.CATEGORY_CALL.equals(n.getNotification().category)
598 && n.isOngoing();
599 boolean isMusic = n.getNotification().hasMediaSession();
600 boolean isImportantOngoing = isMusic || isCall;
Mady Mellorceced172018-11-27 11:18:39 -0800601
Mady Mellor5549dd22018-11-06 18:07:34 -0800602 Class<? extends Notification.Style> style = n.getNotification().getNotificationStyle();
Mady Mellore3175372018-12-04 17:05:11 -0800603 boolean isMessageType = Notification.CATEGORY_MESSAGE.equals(n.getNotification().category);
604 boolean isMessageStyle = Notification.MessagingStyle.class.equals(style);
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800605 return (((isMessageType && hasRemoteInput) || isMessageStyle) && autoBubbleMessages)
Mady Mellor711f9562018-12-05 14:53:46 -0800606 || (isImportantOngoing && autoBubbleOngoing)
Mady Mellorceced172018-11-27 11:18:39 -0800607 || autoBubbleAll;
608 }
609
Mady Mellore80930e2019-03-21 16:00:45 -0700610 private boolean shouldAutoExpand(NotificationEntry entry) {
611 Notification.BubbleMetadata metadata = entry.getBubbleMetadata();
612 return metadata != null && metadata.getAutoExpandBubble()
Steven Wu8ba8ca92019-04-11 10:47:42 -0400613 && isForegroundApp(mContext, entry.notification.getPackageName());
Mady Mellore80930e2019-03-21 16:00:45 -0700614 }
615
Mady Mellor8a1f0252019-04-01 11:31:34 -0700616 private void updateShowInShadeForSuppressNotification(NotificationEntry entry) {
617 boolean suppressNotification = entry.getBubbleMetadata() != null
Mady Mellorc529d6d2019-04-16 14:22:52 -0700618 && entry.getBubbleMetadata().isNotificationSuppressed()
Steven Wu8ba8ca92019-04-11 10:47:42 -0400619 && isForegroundApp(mContext, entry.notification.getPackageName());
Mady Mellor8a1f0252019-04-01 11:31:34 -0700620 entry.setShowInShadeWhenBubble(!suppressNotification);
621 }
622
Mady Mellore80930e2019-03-21 16:00:45 -0700623 /**
624 * Return true if the applications with the package name is running in foreground.
625 *
Steven Wu8ba8ca92019-04-11 10:47:42 -0400626 * @param context application context.
Mady Mellore80930e2019-03-21 16:00:45 -0700627 * @param pkgName application package name.
628 */
Steven Wu8ba8ca92019-04-11 10:47:42 -0400629 public static boolean isForegroundApp(Context context, String pkgName) {
630 ActivityManager am = context.getSystemService(ActivityManager.class);
Mady Mellore80930e2019-03-21 16:00:45 -0700631 List<RunningTaskInfo> tasks = am.getRunningTasks(1 /* maxNum */);
632 return !tasks.isEmpty() && pkgName.equals(tasks.get(0).topActivity.getPackageName());
633 }
634
Mark Renoufcecc77b2019-01-30 16:32:24 -0500635 /**
636 * This task stack listener is responsible for responding to tasks moved to the front
637 * which are on the default (main) display. When this happens, expanded bubbles must be
638 * collapsed so the user may interact with the app which was just moved to the front.
639 * <p>
640 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
641 * these calls via a main thread Handler.
642 */
643 @MainThread
644 private class BubbleTaskStackListener extends TaskStackChangeListener {
645
Mark Renoufcecc77b2019-01-30 16:32:24 -0500646 @Override
Mark Renoufc808f062019-02-07 15:20:37 -0500647 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
648 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400649 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500650 }
651 }
652
Mark Renoufcecc77b2019-01-30 16:32:24 -0500653 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -0500654 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -0500655 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400656 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500657 }
658 }
659 }
660
Mady Mellorceced172018-11-27 11:18:39 -0800661 private static boolean shouldAutoBubbleMessages(Context context) {
662 return Settings.Secure.getInt(context.getContentResolver(),
663 ENABLE_AUTO_BUBBLE_MESSAGES, 0) != 0;
664 }
665
666 private static boolean shouldAutoBubbleOngoing(Context context) {
667 return Settings.Secure.getInt(context.getContentResolver(),
668 ENABLE_AUTO_BUBBLE_ONGOING, 0) != 0;
669 }
670
671 private static boolean shouldAutoBubbleAll(Context context) {
672 return Settings.Secure.getInt(context.getContentResolver(),
673 ENABLE_AUTO_BUBBLE_ALL, 0) != 0;
Mady Mellor5549dd22018-11-06 18:07:34 -0800674 }
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500675
Mady Mellor3dff9e62019-02-05 18:12:53 -0800676 static boolean shouldUseContentIntent(Context context) {
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500677 return Settings.Secure.getInt(context.getContentResolver(),
678 ENABLE_BUBBLE_CONTENT_INTENT, 0) != 0;
679 }
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800680
681 private static boolean areBubblesEnabled(Context context) {
682 return Settings.Secure.getInt(context.getContentResolver(),
683 ENABLE_BUBBLES, 1) != 0;
684 }
Joshua Tsujia19515f2019-02-13 18:02:29 -0500685
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500686 /** Default stiffness to use for bubble physics animations. */
687 public static int getBubbleStiffness(Context context, int defaultStiffness) {
688 return Settings.Secure.getInt(
689 context.getContentResolver(), BUBBLE_STIFFNESS, defaultStiffness);
690 }
691
692 /** Default bounciness/damping ratio to use for bubble physics animations. */
693 public static float getBubbleBounciness(Context context, float defaultBounciness) {
694 return Settings.Secure.getInt(
695 context.getContentResolver(),
696 BUBBLE_BOUNCINESS,
697 (int) (defaultBounciness * 100)) / 100f;
698 }
699
Joshua Tsujia19515f2019-02-13 18:02:29 -0500700 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
701 private class BubblesImeListener extends IPinnedStackListener.Stub {
702
703 @Override
704 public void onListenerRegistered(IPinnedStackController controller) throws RemoteException {
705 }
706
707 @Override
708 public void onMovementBoundsChanged(Rect insetBounds, Rect normalBounds,
709 Rect animatingBounds, boolean fromImeAdjustment, boolean fromShelfAdjustment,
710 int displayRotation) throws RemoteException {}
711
712 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -0500713 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
714 if (mStackView != null && mStackView.getBubbleCount() > 0) {
715 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -0500716 }
717 }
718
719 @Override
720 public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight)
721 throws RemoteException {}
722
723 @Override
724 public void onMinimizedStateChanged(boolean isMinimized) throws RemoteException {}
725
726 @Override
727 public void onActionsChanged(ParceledListSlice actions) throws RemoteException {}
728 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800729}