blob: 9168bf3406bf09a4ff8ba09d141f65dc8918b43e [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 Mellord1c78b262018-11-06 18:04:40 -080019import static android.view.View.INVISIBLE;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080020import static android.view.View.VISIBLE;
Joshua Tsujib1a796b2019-01-16 15:43:12 -080021import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080022
Mady Mellor3f2efdb2018-11-21 11:30:45 -080023import static com.android.systemui.statusbar.StatusBarState.SHADE;
24import static com.android.systemui.statusbar.notification.NotificationAlertingManager.alertAgain;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080025
Mark Renouf08bc42a2019-03-07 13:01:59 -050026import static java.lang.annotation.RetentionPolicy.SOURCE;
27
Mady Mellorb4991e62019-01-10 15:14:51 -080028import android.annotation.Nullable;
Mady Mellore80930e2019-03-21 16:00:45 -070029import android.app.ActivityManager;
Mark Renoufc808f062019-02-07 15:20:37 -050030import android.app.ActivityManager.RunningTaskInfo;
Mark Renoufcecc77b2019-01-30 16:32:24 -050031import android.app.ActivityTaskManager;
32import android.app.IActivityTaskManager;
Mady Mellorb4991e62019-01-10 15:14:51 -080033import android.app.INotificationManager;
Mady Mellor5549dd22018-11-06 18:07:34 -080034import android.app.Notification;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080035import android.content.Context;
Joshua Tsujia19515f2019-02-13 18:02:29 -050036import android.content.pm.ParceledListSlice;
Mady Mellord1c78b262018-11-06 18:04:40 -080037import android.graphics.Rect;
Mark Renoufcecc77b2019-01-30 16:32:24 -050038import android.os.RemoteException;
Mady Mellorb4991e62019-01-10 15:14:51 -080039import android.os.ServiceManager;
Mady Mellorceced172018-11-27 11:18:39 -080040import android.provider.Settings;
Mady Mellor5549dd22018-11-06 18:07:34 -080041import android.service.notification.StatusBarNotification;
Mark Renoufcecc77b2019-01-30 16:32:24 -050042import android.view.Display;
Joshua Tsujia19515f2019-02-13 18:02:29 -050043import android.view.IPinnedStackController;
44import android.view.IPinnedStackListener;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080045import android.view.ViewGroup;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080046import android.widget.FrameLayout;
47
Mark Renouf08bc42a2019-03-07 13:01:59 -050048import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050049import androidx.annotation.MainThread;
50
Mady Mellorebdbbb92018-11-15 14:36:48 -080051import com.android.internal.annotations.VisibleForTesting;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080052import com.android.internal.statusbar.NotificationVisibility;
Ned Burns01e38212019-01-03 16:32:52 -050053import com.android.systemui.Dependency;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080054import com.android.systemui.R;
Beverly8fdb5332019-02-04 14:29:49 -050055import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050056import com.android.systemui.shared.system.ActivityManagerWrapper;
57import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050058import com.android.systemui.shared.system.WindowManagerWrapper;
Ned Burns01e38212019-01-03 16:32:52 -050059import com.android.systemui.statusbar.notification.NotificationEntryListener;
60import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080061import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050062import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Ned Burns1a5e22f2019-02-14 15:11:52 -050063import com.android.systemui.statusbar.notification.row.NotificationContentInflater.InflationFlag;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080064import com.android.systemui.statusbar.phone.StatusBarWindowController;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070065import com.android.systemui.statusbar.policy.ConfigurationController;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080066
Mark Renouf08bc42a2019-03-07 13:01:59 -050067import java.lang.annotation.Retention;
Mady Mellore80930e2019-03-21 16:00:45 -070068import java.util.List;
Mark Renouf08bc42a2019-03-07 13:01:59 -050069
Jason Monk27d01a622018-12-10 15:57:09 -050070import javax.inject.Inject;
71import javax.inject.Singleton;
72
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080073/**
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 Monk27d01a622018-12-10 15:57:09 -050079@Singleton
Mark Renouf71a3af62019-04-08 15:02:54 -040080public class BubbleController implements ConfigurationController.ConfigurationListener {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080081
82 private static final String TAG = "BubbleController";
83
Mark Renouf08bc42a2019-03-07 13:01:59 -050084 @Retention(SOURCE)
85 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
Mady Melloraa8fef22019-04-11 13:36:40 -070086 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION, DISMISS_NO_LONGER_BUBBLE})
Mark Renouf08bc42a2019-03-07 13:01:59 -050087 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070088
Mark Renouf08bc42a2019-03-07 13:01:59 -050089 static final int DISMISS_USER_GESTURE = 1;
90 static final int DISMISS_AGED = 2;
91 static final int DISMISS_TASK_FINISHED = 3;
92 static final int DISMISS_BLOCKED = 4;
93 static final int DISMISS_NOTIF_CANCEL = 5;
94 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
Mady Melloraa8fef22019-04-11 13:36:40 -070095 static final int DISMISS_NO_LONGER_BUBBLE = 7;
Mark Renouf08bc42a2019-03-07 13:01:59 -050096
Joshua Tsuji25a4b7b2019-03-22 14:11:06 -040097 static final int MAX_BUBBLES = 5; // TODO: actually enforce this
98
Mady Mellor5549dd22018-11-06 18:07:34 -080099 // Enables some subset of notifs to automatically become bubbles
Ned Burns01e38212019-01-03 16:32:52 -0500100 private static final boolean DEBUG_ENABLE_AUTO_BUBBLE = false;
Mady Mellor5549dd22018-11-06 18:07:34 -0800101
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800102 /** Flag to enable or disable the entire feature */
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800103 private static final String ENABLE_BUBBLES = "experiment_enable_bubbles";
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800104 /** Auto bubble flags set whether different notif types should be presented as a bubble */
Mady Mellorceced172018-11-27 11:18:39 -0800105 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 Mellor44ee2fe2019-01-30 17:51:16 -0800108
109 /** Use an activityView for an auto-bubbled notifs if it has an appropriate content intent */
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500110 private static final String ENABLE_BUBBLE_CONTENT_INTENT = "experiment_bubble_content_intent";
Mady Mellorceced172018-11-27 11:18:39 -0800111
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500112 private static final String BUBBLE_STIFFNESS = "experiment_bubble_stiffness";
113 private static final String BUBBLE_BOUNCINESS = "experiment_bubble_bounciness";
114
Ned Burns01e38212019-01-03 16:32:52 -0500115 private final Context mContext;
116 private final NotificationEntryManager mNotificationEntryManager;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500117 private final IActivityTaskManager mActivityTaskManager;
118 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellord1c78b262018-11-06 18:04:40 -0800119 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800120 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100121 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800122
Mady Mellor3dff9e62019-02-05 18:12:53 -0800123 private BubbleData mBubbleData;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800124 private BubbleStackView mStackView;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800125
126 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500127 private final StatusBarWindowController mStatusBarWindowController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800128 private StatusBarStateListener mStatusBarStateListener;
129
Mady Melloraa8fef22019-04-11 13:36:40 -0700130 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800131
Mady Mellorb4991e62019-01-10 15:14:51 -0800132 private INotificationManager mNotificationManagerService;
133
Mady Mellord1c78b262018-11-06 18:04:40 -0800134 // Used for determining view rect for touch interaction
135 private Rect mTempRect = new Rect();
136
Mady Mellor5549dd22018-11-06 18:07:34 -0800137 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800138 * Listener to be notified when some states of the bubbles change.
139 */
140 public interface BubbleStateChangeListener {
141 /**
142 * Called when the stack has bubbles or no longer has bubbles.
143 */
144 void onHasBubblesChanged(boolean hasBubbles);
145 }
146
Mady Mellorcd9b1302018-11-06 18:08:04 -0800147 /**
148 * Listener to find out about stack expansion / collapse events.
149 */
150 public interface BubbleExpandListener {
151 /**
152 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700153 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800154 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800155 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800156 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800157 void onBubbleExpandChanged(boolean isExpanding, String key);
158 }
159
160 /**
161 * Listens for the current state of the status bar and updates the visibility state
162 * of bubbles as needed.
163 */
164 private class StatusBarStateListener implements StatusBarStateController.StateListener {
165 private int mState;
166 /**
167 * Returns the current status bar state.
168 */
169 public int getCurrentState() {
170 return mState;
171 }
172
173 @Override
174 public void onStateChanged(int newState) {
175 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400176 boolean shouldCollapse = (mState != SHADE);
177 if (shouldCollapse) {
178 collapseStack();
179 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800180 updateVisibility();
181 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800182 }
183
Jason Monk27d01a622018-12-10 15:57:09 -0500184 @Inject
Mady Mellorcfd06c12019-02-13 14:32:12 -0800185 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Mady Melloraa8fef22019-04-11 13:36:40 -0700186 BubbleData data, ConfigurationController configurationController,
187 NotificationInterruptionStateProvider interruptionStateProvider) {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700188 this(context, statusBarWindowController, data, null /* synchronizer */,
Mady Melloraa8fef22019-04-11 13:36:40 -0700189 configurationController, interruptionStateProvider);
Issei Suzukic0387542019-03-08 17:31:14 +0100190 }
191
192 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700193 BubbleData data, @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
Mady Melloraa8fef22019-04-11 13:36:40 -0700194 ConfigurationController configurationController,
195 NotificationInterruptionStateProvider interruptionStateProvider) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800196 mContext = context;
Mady Melloraa8fef22019-04-11 13:36:40 -0700197 mNotificationInterruptionStateProvider = interruptionStateProvider;
198
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700199 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800200
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800201 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class);
Ned Burns01e38212019-01-03 16:32:52 -0500202 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorb4991e62019-01-10 15:14:51 -0800203
204 try {
205 mNotificationManagerService = INotificationManager.Stub.asInterface(
206 ServiceManager.getServiceOrThrow(Context.NOTIFICATION_SERVICE));
207 } catch (ServiceManager.ServiceNotFoundException e) {
208 e.printStackTrace();
209 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800210
211 mStatusBarWindowController = statusBarWindowController;
212 mStatusBarStateListener = new StatusBarStateListener();
213 Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500214
215 mActivityTaskManager = ActivityTaskManager.getService();
216 mTaskStackListener = new BubbleTaskStackListener();
217 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800218
Joshua Tsujia19515f2019-02-13 18:02:29 -0500219 try {
220 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
221 } catch (RemoteException e) {
222 e.printStackTrace();
223 }
224
Mady Mellorcfd06c12019-02-13 14:32:12 -0800225 mBubbleData = data;
Mark Renouf3bc5b362019-04-05 14:37:59 -0400226 mBubbleData.setListener(mBubbleDataListener);
Issei Suzukic0387542019-03-08 17:31:14 +0100227 mSurfaceSynchronizer = synchronizer;
Mady Mellor5549dd22018-11-06 18:07:34 -0800228 }
229
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400230 /**
231 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
232 * method initializes the stack view and adds it to the StatusBar just above the scrim.
233 */
234 private void ensureStackViewCreated() {
235 if (mStackView == null) {
236 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
237 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
238 // TODO(b/130237686): When you expand the shade on top of expanded bubble, there is no
239 // scrim between bubble and the shade
240 int bubblePosition = sbv.indexOfChild(sbv.findViewById(R.id.scrim_behind)) + 1;
241 sbv.addView(mStackView, bubblePosition,
242 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
243 if (mExpandListener != null) {
244 mStackView.setExpandListener(mExpandListener);
245 }
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400246 }
247 }
248
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700249 @Override
250 public void onUiModeChanged() {
251 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700252 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700253 }
254 }
255
256 @Override
257 public void onOverlayChanged() {
258 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700259 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700260 }
261 }
262
Mady Mellor5549dd22018-11-06 18:07:34 -0800263 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800264 * Set a listener to be notified when some states of the bubbles change.
265 */
266 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
267 mStateChangeListener = listener;
268 }
269
270 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800271 * Set a listener to be notified of bubble expand events.
272 */
273 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100274 mExpandListener = ((isExpanding, key) -> {
275 if (listener != null) {
276 listener.onBubbleExpandChanged(isExpanding, key);
277 }
278 mStatusBarWindowController.setBubbleExpanded(isExpanding);
279 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800280 if (mStackView != null) {
281 mStackView.setExpandListener(mExpandListener);
282 }
283 }
284
285 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800286 * Whether or not there are bubbles present, regardless of them being visible on the
287 * screen (e.g. if on AOD).
288 */
289 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800290 if (mStackView == null) {
291 return false;
292 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400293 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800294 }
295
296 /**
297 * Whether the stack of bubbles is expanded or not.
298 */
299 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400300 return mBubbleData.isExpanded();
301 }
302
303 /**
304 * Tell the stack of bubbles to expand.
305 */
306 public void expandStack() {
307 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800308 }
309
310 /**
311 * Tell the stack of bubbles to collapse.
312 */
313 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400314 mBubbleData.setExpanded(false /* expanded */);
315 }
316
317 void selectBubble(Bubble bubble) {
318 mBubbleData.setSelectedBubble(bubble);
319 }
320
321 @VisibleForTesting
322 void selectBubble(String key) {
323 Bubble bubble = mBubbleData.getBubbleWithKey(key);
324 selectBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800325 }
326
327 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400328 * Request the stack expand if needed, then select the specified Bubble as current.
329 *
330 * @param notificationKey the notification key for the bubble to be selected
331 */
332 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400333 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
334 if (bubble != null) {
335 mBubbleData.setSelectedBubble(bubble);
336 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400337 }
338 }
339
340 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800341 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
342 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500343 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400344 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800345 }
346
347 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500348 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
349 * is forwarded a back key down/up pair.
350 */
351 public void performBackPressIfNeeded() {
352 if (mStackView != null) {
353 mStackView.performBackPressIfNeeded();
354 }
355 }
356
357 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800358 * Adds or updates a bubble associated with the provided notification entry.
359 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400360 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800361 */
Mark Renouff97ed462019-04-05 13:46:24 -0400362 void updateBubble(NotificationEntry notif) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400363 mBubbleData.notificationEntryUpdated(notif);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800364 }
365
366 /**
367 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500368 * <p>
369 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800370 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500371 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500372 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400373 // TEMP: refactor to change this to pass entry
374 Bubble bubble = mBubbleData.getBubbleWithKey(key);
375 if (bubble != null) {
376 mBubbleData.notificationEntryRemoved(bubble.entry, reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800377 }
378 }
379
Ned Burns01e38212019-01-03 16:32:52 -0500380 @SuppressWarnings("FieldCanBeLocal")
381 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
382 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500383 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800384 if (!areBubblesEnabled(mContext)) {
385 return;
386 }
Mady Melloraa8fef22019-04-11 13:36:40 -0700387 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700388 // TODO: handle group summaries?
389 updateShowInShadeForSuppressNotification(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800390 }
391 }
392
393 @Override
Ned Burns1a5e22f2019-02-14 15:11:52 -0500394 public void onEntryInflated(NotificationEntry entry, @InflationFlag int inflatedFlags) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800395 if (!areBubblesEnabled(mContext)) {
396 return;
397 }
Mady Melloraa8fef22019-04-11 13:36:40 -0700398 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)) {
Mark Renouff97ed462019-04-05 13:46:24 -0400399 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800400 }
401 }
402
403 @Override
404 public void onPreEntryUpdated(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800405 if (!areBubblesEnabled(mContext)) {
406 return;
407 }
Mady Melloraa8fef22019-04-11 13:36:40 -0700408 boolean shouldBubble = mNotificationInterruptionStateProvider.shouldBubbleUp(entry);
409 if (!shouldBubble && mBubbleData.hasBubbleWithKey(entry.key)) {
410 // It was previously a bubble but no longer a bubble -- lets remove it
411 removeBubble(entry.key, DISMISS_NO_LONGER_BUBBLE);
412 } else if (shouldBubble && alertAgain(entry, entry.notification.getNotification())) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700413 updateShowInShadeForSuppressNotification(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800414 entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed
Mark Renouff97ed462019-04-05 13:46:24 -0400415 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800416 }
417 }
418
419 @Override
420 public void onEntryRemoved(NotificationEntry entry,
421 @Nullable NotificationVisibility visibility,
422 boolean removedByUser) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800423 if (!areBubblesEnabled(mContext)) {
424 return;
425 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800426 entry.setShowInShadeWhenBubble(false);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800427 if (mStackView != null) {
428 mStackView.updateDotVisibility(entry.key);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800429 }
430 if (!removedByUser) {
431 // This was a cancel so we should remove the bubble
Mark Renouf08bc42a2019-03-07 13:01:59 -0500432 removeBubble(entry.key, DISMISS_NOTIF_CANCEL);
Ned Burns01e38212019-01-03 16:32:52 -0500433 }
434 }
435 };
436
Mark Renouf71a3af62019-04-08 15:02:54 -0400437 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400438 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400439
Mark Renouf3bc5b362019-04-05 14:37:59 -0400440 @Override
441 public void onBubbleAdded(Bubble bubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400442 ensureStackViewCreated();
443 mStackView.addBubble(bubble);
Mark Renouf3bc5b362019-04-05 14:37:59 -0400444 }
445
446 @Override
447 public void onBubbleRemoved(Bubble bubble, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400448 if (mStackView != null) {
449 mStackView.removeBubble(bubble);
450 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400451 }
452
453 public void onBubbleUpdated(Bubble bubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400454 if (mStackView != null) {
455 mStackView.updateBubble(bubble);
456 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400457 }
458
459 @Override
460 public void onOrderChanged(List<Bubble> bubbles) {
Mark Renouf3bc5b362019-04-05 14:37:59 -0400461 }
462
463 @Override
464 public void onSelectionChanged(Bubble selectedBubble) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400465 if (mStackView != null) {
466 mStackView.setSelectedBubble(selectedBubble);
467 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400468 }
469
470 @Override
471 public void onExpandedChanged(boolean expanded) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400472 if (mStackView != null) {
473 mStackView.setExpanded(expanded);
474 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400475 }
476
477 @Override
478 public void showFlyoutText(Bubble bubble, String text) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400479 if (mStackView != null) {
480 mStackView.animateInFlyoutForBubble(bubble);
481 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400482 }
483
484 @Override
485 public void apply() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400486 mNotificationEntryManager.updateNotifications();
487 updateVisibility();
Mark Renouf3bc5b362019-04-05 14:37:59 -0400488 }
489 };
490
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800491 /**
492 * Lets any listeners know if bubble state has changed.
493 */
Mady Mellord1c78b262018-11-06 18:04:40 -0800494 private void updateBubblesShowing() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800495 if (mStackView == null) {
496 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800497 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800498
Mady Mellord1c78b262018-11-06 18:04:40 -0800499 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800500 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
Mady Mellord1c78b262018-11-06 18:04:40 -0800501 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
Mady Mellord1c78b262018-11-06 18:04:40 -0800502 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
503 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
504 }
Mady Mellor5549dd22018-11-06 18:07:34 -0800505 }
506
507 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800508 * Updates the visibility of the bubbles based on current state.
509 * Does not un-bubble, just hides or un-hides. Will notify any
510 * {@link BubbleStateChangeListener}s if visibility changes.
Mady Mellor5549dd22018-11-06 18:07:34 -0800511 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800512 public void updateVisibility() {
513 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
514 // Bubbles only appear in unlocked shade
515 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
516 } else if (mStackView != null) {
517 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800518 }
Mady Mellord1c78b262018-11-06 18:04:40 -0800519 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 Mellorc3d6f7d2018-11-07 09:36:56 -0800531 }
532
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800533 @VisibleForTesting
534 BubbleStackView getStackView() {
535 return mStackView;
536 }
537
Mady Mellor5549dd22018-11-06 18:07:34 -0800538 /**
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800539 * Whether the notification should automatically bubble or not. Gated by secure settings flags.
Mady Mellor5549dd22018-11-06 18:07:34 -0800540 */
Mady Mellor9bad2242019-01-28 11:21:51 -0800541 @VisibleForTesting
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800542 protected boolean shouldAutoBubbleForFlags(Context context, NotificationEntry entry) {
Mady Mellorceced172018-11-27 11:18:39 -0800543 if (entry.isBubbleDismissed()) {
Mady Mellor5549dd22018-11-06 18:07:34 -0800544 return false;
545 }
Mady Mellorb4991e62019-01-10 15:14:51 -0800546 StatusBarNotification n = entry.notification;
Mady Mellorceced172018-11-27 11:18:39 -0800547
548 boolean autoBubbleMessages = shouldAutoBubbleMessages(context) || DEBUG_ENABLE_AUTO_BUBBLE;
549 boolean autoBubbleOngoing = shouldAutoBubbleOngoing(context) || DEBUG_ENABLE_AUTO_BUBBLE;
550 boolean autoBubbleAll = shouldAutoBubbleAll(context) || DEBUG_ENABLE_AUTO_BUBBLE;
551
Mady Mellor5549dd22018-11-06 18:07:34 -0800552 boolean hasRemoteInput = false;
553 if (n.getNotification().actions != null) {
554 for (Notification.Action action : n.getNotification().actions) {
555 if (action.getRemoteInputs() != null) {
556 hasRemoteInput = true;
557 break;
558 }
559 }
560 }
Mady Mellor711f9562018-12-05 14:53:46 -0800561 boolean isCall = Notification.CATEGORY_CALL.equals(n.getNotification().category)
562 && n.isOngoing();
563 boolean isMusic = n.getNotification().hasMediaSession();
564 boolean isImportantOngoing = isMusic || isCall;
Mady Mellorceced172018-11-27 11:18:39 -0800565
Mady Mellor5549dd22018-11-06 18:07:34 -0800566 Class<? extends Notification.Style> style = n.getNotification().getNotificationStyle();
Mady Mellore3175372018-12-04 17:05:11 -0800567 boolean isMessageType = Notification.CATEGORY_MESSAGE.equals(n.getNotification().category);
568 boolean isMessageStyle = Notification.MessagingStyle.class.equals(style);
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800569 return (((isMessageType && hasRemoteInput) || isMessageStyle) && autoBubbleMessages)
Mady Mellor711f9562018-12-05 14:53:46 -0800570 || (isImportantOngoing && autoBubbleOngoing)
Mady Mellorceced172018-11-27 11:18:39 -0800571 || autoBubbleAll;
572 }
573
Mady Mellore80930e2019-03-21 16:00:45 -0700574 private boolean shouldAutoExpand(NotificationEntry entry) {
575 Notification.BubbleMetadata metadata = entry.getBubbleMetadata();
576 return metadata != null && metadata.getAutoExpandBubble()
Steven Wu8ba8ca92019-04-11 10:47:42 -0400577 && isForegroundApp(mContext, entry.notification.getPackageName());
Mady Mellore80930e2019-03-21 16:00:45 -0700578 }
579
Mady Mellor8a1f0252019-04-01 11:31:34 -0700580 private void updateShowInShadeForSuppressNotification(NotificationEntry entry) {
581 boolean suppressNotification = entry.getBubbleMetadata() != null
582 && entry.getBubbleMetadata().getSuppressNotification()
Steven Wu8ba8ca92019-04-11 10:47:42 -0400583 && isForegroundApp(mContext, entry.notification.getPackageName());
Mady Mellor8a1f0252019-04-01 11:31:34 -0700584 entry.setShowInShadeWhenBubble(!suppressNotification);
585 }
586
Mady Mellore80930e2019-03-21 16:00:45 -0700587 /**
588 * Return true if the applications with the package name is running in foreground.
589 *
Steven Wu8ba8ca92019-04-11 10:47:42 -0400590 * @param context application context.
Mady Mellore80930e2019-03-21 16:00:45 -0700591 * @param pkgName application package name.
592 */
Steven Wu8ba8ca92019-04-11 10:47:42 -0400593 public static boolean isForegroundApp(Context context, String pkgName) {
594 ActivityManager am = context.getSystemService(ActivityManager.class);
Mady Mellore80930e2019-03-21 16:00:45 -0700595 List<RunningTaskInfo> tasks = am.getRunningTasks(1 /* maxNum */);
596 return !tasks.isEmpty() && pkgName.equals(tasks.get(0).topActivity.getPackageName());
597 }
598
Mark Renoufcecc77b2019-01-30 16:32:24 -0500599 /**
600 * This task stack listener is responsible for responding to tasks moved to the front
601 * which are on the default (main) display. When this happens, expanded bubbles must be
602 * collapsed so the user may interact with the app which was just moved to the front.
603 * <p>
604 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
605 * these calls via a main thread Handler.
606 */
607 @MainThread
608 private class BubbleTaskStackListener extends TaskStackChangeListener {
609
Mark Renoufcecc77b2019-01-30 16:32:24 -0500610 @Override
Mark Renoufc808f062019-02-07 15:20:37 -0500611 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
612 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400613 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500614 }
615 }
616
Mark Renoufcecc77b2019-01-30 16:32:24 -0500617 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -0500618 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -0500619 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400620 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500621 }
622 }
623 }
624
Mady Mellorceced172018-11-27 11:18:39 -0800625 private static boolean shouldAutoBubbleMessages(Context context) {
626 return Settings.Secure.getInt(context.getContentResolver(),
627 ENABLE_AUTO_BUBBLE_MESSAGES, 0) != 0;
628 }
629
630 private static boolean shouldAutoBubbleOngoing(Context context) {
631 return Settings.Secure.getInt(context.getContentResolver(),
632 ENABLE_AUTO_BUBBLE_ONGOING, 0) != 0;
633 }
634
635 private static boolean shouldAutoBubbleAll(Context context) {
636 return Settings.Secure.getInt(context.getContentResolver(),
637 ENABLE_AUTO_BUBBLE_ALL, 0) != 0;
Mady Mellor5549dd22018-11-06 18:07:34 -0800638 }
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500639
Mady Mellor3dff9e62019-02-05 18:12:53 -0800640 static boolean shouldUseContentIntent(Context context) {
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500641 return Settings.Secure.getInt(context.getContentResolver(),
642 ENABLE_BUBBLE_CONTENT_INTENT, 0) != 0;
643 }
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800644
645 private static boolean areBubblesEnabled(Context context) {
646 return Settings.Secure.getInt(context.getContentResolver(),
647 ENABLE_BUBBLES, 1) != 0;
648 }
Joshua Tsujia19515f2019-02-13 18:02:29 -0500649
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500650 /** Default stiffness to use for bubble physics animations. */
651 public static int getBubbleStiffness(Context context, int defaultStiffness) {
652 return Settings.Secure.getInt(
653 context.getContentResolver(), BUBBLE_STIFFNESS, defaultStiffness);
654 }
655
656 /** Default bounciness/damping ratio to use for bubble physics animations. */
657 public static float getBubbleBounciness(Context context, float defaultBounciness) {
658 return Settings.Secure.getInt(
659 context.getContentResolver(),
660 BUBBLE_BOUNCINESS,
661 (int) (defaultBounciness * 100)) / 100f;
662 }
663
Joshua Tsujia19515f2019-02-13 18:02:29 -0500664 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
665 private class BubblesImeListener extends IPinnedStackListener.Stub {
666
667 @Override
668 public void onListenerRegistered(IPinnedStackController controller) throws RemoteException {
669 }
670
671 @Override
672 public void onMovementBoundsChanged(Rect insetBounds, Rect normalBounds,
673 Rect animatingBounds, boolean fromImeAdjustment, boolean fromShelfAdjustment,
674 int displayRotation) throws RemoteException {}
675
676 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -0500677 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
678 if (mStackView != null && mStackView.getBubbleCount() > 0) {
679 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -0500680 }
681 }
682
683 @Override
684 public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight)
685 throws RemoteException {}
686
687 @Override
688 public void onMinimizedStateChanged(boolean isMinimized) throws RemoteException {}
689
690 @Override
691 public void onActionsChanged(ParceledListSlice actions) throws RemoteException {}
692 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800693}