blob: 5d5f245d85bf48b271e6c2b453c1daba8a5c800a [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 Mellor3a0a1b42019-05-23 06:40:21 -070019import static android.app.Notification.FLAG_BUBBLE;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040020import static android.app.NotificationManager.Policy.SUPPRESSED_EFFECT_BADGE;
21import static android.app.NotificationManager.Policy.SUPPRESSED_EFFECT_NOTIFICATION_LIST;
22import static android.app.NotificationManager.Policy.SUPPRESSED_EFFECT_PEEK;
Mady Mellorca0c24c2019-05-16 16:14:32 -070023import static android.content.pm.ActivityInfo.DOCUMENT_LAUNCH_ALWAYS;
Mady Mellorc2ff0112019-03-28 14:18:06 -070024import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL;
25import static android.service.notification.NotificationListenerService.REASON_APP_CANCEL_ALL;
26import static android.service.notification.NotificationListenerService.REASON_CANCEL;
27import static android.service.notification.NotificationListenerService.REASON_CANCEL_ALL;
Mady Mellor390bff42019-04-05 15:09:01 -070028import static android.view.Display.DEFAULT_DISPLAY;
29import static android.view.Display.INVALID_DISPLAY;
Mady Mellord1c78b262018-11-06 18:04:40 -080030import static android.view.View.INVISIBLE;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080031import static android.view.View.VISIBLE;
Joshua Tsujib1a796b2019-01-16 15:43:12 -080032import static android.view.ViewGroup.LayoutParams.MATCH_PARENT;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080033
Issei Suzukia8d07312019-06-07 12:56:19 +020034import static com.android.systemui.bubbles.BubbleDebugConfig.DEBUG_BUBBLE_CONTROLLER;
35import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_BUBBLES;
36import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_WITH_CLASS_NAME;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080037import static com.android.systemui.statusbar.StatusBarState.SHADE;
Mady Mellor1a4e86f2019-05-03 16:07:23 -070038import static com.android.systemui.statusbar.notification.NotificationEntryManager.UNDEFINED_DISMISS_REASON;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080039
Mark Renoufba5ab512019-05-02 15:21:01 -040040import static java.lang.annotation.ElementType.FIELD;
41import static java.lang.annotation.ElementType.LOCAL_VARIABLE;
42import static java.lang.annotation.ElementType.PARAMETER;
Mark Renouf08bc42a2019-03-07 13:01:59 -050043import static java.lang.annotation.RetentionPolicy.SOURCE;
44
Mark Renoufc808f062019-02-07 15:20:37 -050045import android.app.ActivityManager.RunningTaskInfo;
Mady Mellor66efd5e2019-05-15 13:38:11 -070046import android.app.NotificationManager;
Mady Mellorca0c24c2019-05-16 16:14:32 -070047import android.app.PendingIntent;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080048import android.content.Context;
Mady Mellorca0c24c2019-05-16 16:14:32 -070049import android.content.pm.ActivityInfo;
Joshua Tsujia19515f2019-02-13 18:02:29 -050050import android.content.pm.ParceledListSlice;
Joshua Tsujif418f9e2019-04-04 17:09:53 -040051import android.content.res.Configuration;
Mady Mellord1c78b262018-11-06 18:04:40 -080052import android.graphics.Rect;
Mark Renoufcecc77b2019-01-30 16:32:24 -050053import android.os.RemoteException;
Mady Mellorb4991e62019-01-10 15:14:51 -080054import android.os.ServiceManager;
Mady Mellorceced172018-11-27 11:18:39 -080055import android.provider.Settings;
Mark Renoufbbcf07f2019-05-09 10:42:43 -040056import android.service.notification.NotificationListenerService.RankingMap;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040057import android.service.notification.ZenModeConfig;
Mark Renouf9ba6cea2019-04-17 11:53:50 -040058import android.util.Log;
Mark Renouf82a40e62019-05-23 16:16:24 -040059import android.util.Pair;
Mark Renoufcecc77b2019-01-30 16:32:24 -050060import android.view.Display;
Joshua Tsujia19515f2019-02-13 18:02:29 -050061import android.view.IPinnedStackController;
62import android.view.IPinnedStackListener;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080063import android.view.ViewGroup;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080064import android.widget.FrameLayout;
65
Mark Renouf08bc42a2019-03-07 13:01:59 -050066import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050067import androidx.annotation.MainThread;
Joshua Tsujic650a142019-05-22 11:31:19 -040068import androidx.annotation.Nullable;
Mark Renouf658c6bc2019-01-30 10:26:54 -050069
Mady Mellorebdbbb92018-11-15 14:36:48 -080070import com.android.internal.annotations.VisibleForTesting;
Mady Mellora54e9fa2019-04-18 13:26:18 -070071import com.android.internal.statusbar.IStatusBarService;
Ned Burns01e38212019-01-03 16:32:52 -050072import com.android.systemui.Dependency;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080073import com.android.systemui.R;
Beverly8fdb5332019-02-04 14:29:49 -050074import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050075import com.android.systemui.shared.system.ActivityManagerWrapper;
76import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050077import com.android.systemui.shared.system.WindowManagerWrapper;
Mady Mellorc2ff0112019-03-28 14:18:06 -070078import com.android.systemui.statusbar.NotificationRemoveInterceptor;
Ned Burns01e38212019-01-03 16:32:52 -050079import com.android.systemui.statusbar.notification.NotificationEntryListener;
80import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080081import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050082import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Ned Burns1a5e22f2019-02-14 15:11:52 -050083import com.android.systemui.statusbar.notification.row.NotificationContentInflater.InflationFlag;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080084import com.android.systemui.statusbar.phone.StatusBarWindowController;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070085import com.android.systemui.statusbar.policy.ConfigurationController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040086import com.android.systemui.statusbar.policy.ZenModeController;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080087
Mark Renouf08bc42a2019-03-07 13:01:59 -050088import java.lang.annotation.Retention;
Mark Renoufba5ab512019-05-02 15:21:01 -040089import java.lang.annotation.Target;
Mady Mellore80930e2019-03-21 16:00:45 -070090import java.util.List;
Mark Renouf08bc42a2019-03-07 13:01:59 -050091
Jason Monk27d01a622018-12-10 15:57:09 -050092import javax.inject.Inject;
93import javax.inject.Singleton;
94
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080095/**
96 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
97 * Bubbles can be expanded to show more content.
98 *
99 * The controller manages addition, removal, and visible state of bubbles on screen.
100 */
Jason Monk27d01a622018-12-10 15:57:09 -0500101@Singleton
Mark Renouf71a3af62019-04-08 15:02:54 -0400102public class BubbleController implements ConfigurationController.ConfigurationListener {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800103
Issei Suzukia8d07312019-06-07 12:56:19 +0200104 private static final String TAG = TAG_WITH_CLASS_NAME ? "BubbleController" : TAG_BUBBLES;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800105
Mark Renouf08bc42a2019-03-07 13:01:59 -0500106 @Retention(SOURCE)
107 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
Mady Melloraa8fef22019-04-11 13:36:40 -0700108 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION, DISMISS_NO_LONGER_BUBBLE})
Mark Renoufba5ab512019-05-02 15:21:01 -0400109 @Target({FIELD, LOCAL_VARIABLE, PARAMETER})
Mark Renouf08bc42a2019-03-07 13:01:59 -0500110 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700111
Mark Renouf08bc42a2019-03-07 13:01:59 -0500112 static final int DISMISS_USER_GESTURE = 1;
113 static final int DISMISS_AGED = 2;
114 static final int DISMISS_TASK_FINISHED = 3;
115 static final int DISMISS_BLOCKED = 4;
116 static final int DISMISS_NOTIF_CANCEL = 5;
117 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
Mady Melloraa8fef22019-04-11 13:36:40 -0700118 static final int DISMISS_NO_LONGER_BUBBLE = 7;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500119
Joshua Tsuji4accf5982019-04-22 17:36:11 -0400120 public static final int MAX_BUBBLES = 5; // TODO: actually enforce this
Joshua Tsuji25a4b7b2019-03-22 14:11:06 -0400121
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800122 /** Flag to enable or disable the entire feature */
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800123 private static final String ENABLE_BUBBLES = "experiment_enable_bubbles";
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500124
Ned Burns01e38212019-01-03 16:32:52 -0500125 private final Context mContext;
126 private final NotificationEntryManager mNotificationEntryManager;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500127 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellord1c78b262018-11-06 18:04:40 -0800128 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800129 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100130 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800131
Mady Mellor3dff9e62019-02-05 18:12:53 -0800132 private BubbleData mBubbleData;
Joshua Tsujic650a142019-05-22 11:31:19 -0400133 @Nullable private BubbleStackView mStackView;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800134
135 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500136 private final StatusBarWindowController mStatusBarWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400137 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800138 private StatusBarStateListener mStatusBarStateListener;
139
Mady Melloraa8fef22019-04-11 13:36:40 -0700140 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700141 private IStatusBarService mBarService;
Mady Mellorb4991e62019-01-10 15:14:51 -0800142
Mady Mellord1c78b262018-11-06 18:04:40 -0800143 // Used for determining view rect for touch interaction
144 private Rect mTempRect = new Rect();
145
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400146 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
147 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
148
Mady Mellor5549dd22018-11-06 18:07:34 -0800149 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800150 * Listener to be notified when some states of the bubbles change.
151 */
152 public interface BubbleStateChangeListener {
153 /**
154 * Called when the stack has bubbles or no longer has bubbles.
155 */
156 void onHasBubblesChanged(boolean hasBubbles);
157 }
158
Mady Mellorcd9b1302018-11-06 18:08:04 -0800159 /**
160 * Listener to find out about stack expansion / collapse events.
161 */
162 public interface BubbleExpandListener {
163 /**
164 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700165 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800166 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800167 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800168 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800169 void onBubbleExpandChanged(boolean isExpanding, String key);
170 }
171
172 /**
173 * Listens for the current state of the status bar and updates the visibility state
174 * of bubbles as needed.
175 */
176 private class StatusBarStateListener implements StatusBarStateController.StateListener {
177 private int mState;
178 /**
179 * Returns the current status bar state.
180 */
181 public int getCurrentState() {
182 return mState;
183 }
184
185 @Override
186 public void onStateChanged(int newState) {
187 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400188 boolean shouldCollapse = (mState != SHADE);
189 if (shouldCollapse) {
190 collapseStack();
191 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700192 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800193 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800194 }
195
Jason Monk27d01a622018-12-10 15:57:09 -0500196 @Inject
Mady Mellorcfd06c12019-02-13 14:32:12 -0800197 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Mady Melloraa8fef22019-04-11 13:36:40 -0700198 BubbleData data, ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400199 NotificationInterruptionStateProvider interruptionStateProvider,
200 ZenModeController zenModeController) {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700201 this(context, statusBarWindowController, data, null /* synchronizer */,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400202 configurationController, interruptionStateProvider, zenModeController);
Issei Suzukic0387542019-03-08 17:31:14 +0100203 }
204
205 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700206 BubbleData data, @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
Mady Melloraa8fef22019-04-11 13:36:40 -0700207 ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400208 NotificationInterruptionStateProvider interruptionStateProvider,
209 ZenModeController zenModeController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800210 mContext = context;
Mady Melloraa8fef22019-04-11 13:36:40 -0700211 mNotificationInterruptionStateProvider = interruptionStateProvider;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400212 mZenModeController = zenModeController;
213 mZenModeController.addCallback(new ZenModeController.Callback() {
214 @Override
215 public void onZenChanged(int zen) {
216 updateStackViewForZenConfig();
217 }
218
219 @Override
220 public void onConfigChanged(ZenModeConfig config) {
221 updateStackViewForZenConfig();
222 }
223 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700224
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700225 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800226
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400227 mBubbleData = data;
228 mBubbleData.setListener(mBubbleDataListener);
229
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800230 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class);
Ned Burns01e38212019-01-03 16:32:52 -0500231 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorc2ff0112019-03-28 14:18:06 -0700232 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor);
Mady Mellorb4991e62019-01-10 15:14:51 -0800233
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800234 mStatusBarWindowController = statusBarWindowController;
235 mStatusBarStateListener = new StatusBarStateListener();
236 Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500237
Mark Renoufcecc77b2019-01-30 16:32:24 -0500238 mTaskStackListener = new BubbleTaskStackListener();
239 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800240
Joshua Tsujia19515f2019-02-13 18:02:29 -0500241 try {
242 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
243 } catch (RemoteException e) {
244 e.printStackTrace();
245 }
Issei Suzukic0387542019-03-08 17:31:14 +0100246 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700247
248 mBarService = IStatusBarService.Stub.asInterface(
249 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mady Mellor5549dd22018-11-06 18:07:34 -0800250 }
251
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400252 /**
253 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
254 * method initializes the stack view and adds it to the StatusBar just above the scrim.
255 */
256 private void ensureStackViewCreated() {
257 if (mStackView == null) {
258 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
259 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
Lyn Hanbde48202019-05-29 19:18:29 -0700260 int bubbleScrimIndex = sbv.indexOfChild(sbv.findViewById(R.id.scrim_for_bubble));
261 int stackIndex = bubbleScrimIndex + 1; // Show stack above bubble scrim.
262 sbv.addView(mStackView, stackIndex,
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400263 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
264 if (mExpandListener != null) {
265 mStackView.setExpandListener(mExpandListener);
266 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400267
268 updateStackViewForZenConfig();
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400269 }
270 }
271
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700272 @Override
273 public void onUiModeChanged() {
274 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700275 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700276 }
277 }
278
279 @Override
280 public void onOverlayChanged() {
281 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700282 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700283 }
284 }
285
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400286 @Override
287 public void onConfigChanged(Configuration newConfig) {
288 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400289 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700290 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400291 }
292 }
293
Mady Mellor5549dd22018-11-06 18:07:34 -0800294 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800295 * Set a listener to be notified when some states of the bubbles change.
296 */
297 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
298 mStateChangeListener = listener;
299 }
300
301 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800302 * Set a listener to be notified of bubble expand events.
303 */
304 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100305 mExpandListener = ((isExpanding, key) -> {
306 if (listener != null) {
307 listener.onBubbleExpandChanged(isExpanding, key);
308 }
309 mStatusBarWindowController.setBubbleExpanded(isExpanding);
310 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800311 if (mStackView != null) {
312 mStackView.setExpandListener(mExpandListener);
313 }
314 }
315
316 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800317 * Whether or not there are bubbles present, regardless of them being visible on the
318 * screen (e.g. if on AOD).
319 */
320 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800321 if (mStackView == null) {
322 return false;
323 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400324 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800325 }
326
327 /**
328 * Whether the stack of bubbles is expanded or not.
329 */
330 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400331 return mBubbleData.isExpanded();
332 }
333
334 /**
335 * Tell the stack of bubbles to expand.
336 */
337 public void expandStack() {
338 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800339 }
340
341 /**
342 * Tell the stack of bubbles to collapse.
343 */
344 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400345 mBubbleData.setExpanded(false /* expanded */);
346 }
347
348 void selectBubble(Bubble bubble) {
349 mBubbleData.setSelectedBubble(bubble);
350 }
351
352 @VisibleForTesting
353 void selectBubble(String key) {
354 Bubble bubble = mBubbleData.getBubbleWithKey(key);
355 selectBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800356 }
357
358 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400359 * Request the stack expand if needed, then select the specified Bubble as current.
360 *
361 * @param notificationKey the notification key for the bubble to be selected
362 */
363 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400364 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
365 if (bubble != null) {
366 mBubbleData.setSelectedBubble(bubble);
367 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400368 }
369 }
370
371 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800372 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
373 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500374 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400375 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800376 }
377
378 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500379 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
380 * is forwarded a back key down/up pair.
381 */
382 public void performBackPressIfNeeded() {
383 if (mStackView != null) {
384 mStackView.performBackPressIfNeeded();
385 }
386 }
387
388 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800389 * Adds or updates a bubble associated with the provided notification entry.
390 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400391 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800392 */
Mark Renouff97ed462019-04-05 13:46:24 -0400393 void updateBubble(NotificationEntry notif) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700394 // If this is an interruptive notif, mark that it's interrupted
395 if (notif.importance >= NotificationManager.IMPORTANCE_HIGH) {
396 notif.setInterruption();
397 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400398 mBubbleData.notificationEntryUpdated(notif);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800399 }
400
401 /**
402 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500403 * <p>
404 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800405 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500406 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500407 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400408 // TEMP: refactor to change this to pass entry
409 Bubble bubble = mBubbleData.getBubbleWithKey(key);
410 if (bubble != null) {
Mady Mellored99c272019-06-13 15:58:30 -0700411 mBubbleData.notificationEntryRemoved(bubble.getEntry(), reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800412 }
413 }
414
Ned Burns01e38212019-01-03 16:32:52 -0500415 @SuppressWarnings("FieldCanBeLocal")
Mady Mellorc2ff0112019-03-28 14:18:06 -0700416 private final NotificationRemoveInterceptor mRemoveInterceptor =
417 new NotificationRemoveInterceptor() {
418 @Override
419 public boolean onNotificationRemoveRequested(String key, int reason) {
420 if (!mBubbleData.hasBubbleWithKey(key)) {
421 return false;
422 }
Mady Mellored99c272019-06-13 15:58:30 -0700423 Bubble bubble = mBubbleData.getBubbleWithKey(key);
424 NotificationEntry entry = bubble.getEntry();
Mady Mellorc2ff0112019-03-28 14:18:06 -0700425
426 final boolean isClearAll = reason == REASON_CANCEL_ALL;
427 final boolean isUserDimiss = reason == REASON_CANCEL;
428 final boolean isAppCancel = reason == REASON_APP_CANCEL
429 || reason == REASON_APP_CANCEL_ALL;
430
431 // Need to check for !appCancel here because the notification may have
432 // previously been dismissed & entry.isRowDismissed would still be true
433 boolean userRemovedNotif = (entry.isRowDismissed() && !isAppCancel)
434 || isClearAll || isUserDimiss;
435
436 // The bubble notification sticks around in the data as long as the bubble is
437 // not dismissed and the app hasn't cancelled the notification.
Mady Mellored99c272019-06-13 15:58:30 -0700438 boolean bubbleExtended = entry.isBubble() && !bubble.isRemoved()
Mady Mellorc2ff0112019-03-28 14:18:06 -0700439 && userRemovedNotif;
440 if (bubbleExtended) {
441 entry.setShowInShadeWhenBubble(false);
442 if (mStackView != null) {
443 mStackView.updateDotVisibility(entry.key);
444 }
445 mNotificationEntryManager.updateNotifications();
446 return true;
Mady Mellored99c272019-06-13 15:58:30 -0700447 } else if (!userRemovedNotif && !bubble.isRemoved()) {
Mady Mellorc2ff0112019-03-28 14:18:06 -0700448 // This wasn't a user removal so we should remove the bubble as well
449 mBubbleData.notificationEntryRemoved(entry, DISMISS_NOTIF_CANCEL);
450 return false;
451 }
452 return false;
453 }
454 };
455
456 @SuppressWarnings("FieldCanBeLocal")
Ned Burns01e38212019-01-03 16:32:52 -0500457 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
458 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500459 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800460 if (!areBubblesEnabled(mContext)) {
461 return;
462 }
Mady Mellorca0c24c2019-05-16 16:14:32 -0700463 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
464 && canLaunchInActivityView(mContext, entry)) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700465 updateShowInShadeForSuppressNotification(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800466 }
467 }
468
469 @Override
Ned Burns1a5e22f2019-02-14 15:11:52 -0500470 public void onEntryInflated(NotificationEntry entry, @InflationFlag int inflatedFlags) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800471 if (!areBubblesEnabled(mContext)) {
472 return;
473 }
Mady Mellorca0c24c2019-05-16 16:14:32 -0700474 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
475 && canLaunchInActivityView(mContext, entry)) {
Mark Renouff97ed462019-04-05 13:46:24 -0400476 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800477 }
478 }
479
480 @Override
481 public void onPreEntryUpdated(NotificationEntry entry) {
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800482 if (!areBubblesEnabled(mContext)) {
483 return;
484 }
Mady Mellorca0c24c2019-05-16 16:14:32 -0700485 boolean shouldBubble = mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
486 && canLaunchInActivityView(mContext, entry);
Mady Melloraa8fef22019-04-11 13:36:40 -0700487 if (!shouldBubble && mBubbleData.hasBubbleWithKey(entry.key)) {
488 // It was previously a bubble but no longer a bubble -- lets remove it
489 removeBubble(entry.key, DISMISS_NO_LONGER_BUBBLE);
Mady Mellorff40e012019-05-03 15:34:41 -0700490 } else if (shouldBubble) {
Mady Mellor8a1f0252019-04-01 11:31:34 -0700491 updateShowInShadeForSuppressNotification(entry);
Mady Mellored99c272019-06-13 15:58:30 -0700492 Bubble b = mBubbleData.getBubbleWithKey(entry.key);
493 b.setRemoved(false); // updates come back as bubbles even if dismissed
Mark Renouff97ed462019-04-05 13:46:24 -0400494 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800495 }
496 }
Mark Renoufbbcf07f2019-05-09 10:42:43 -0400497
498 @Override
499 public void onNotificationRankingUpdated(RankingMap rankingMap) {
500 // Forward to BubbleData to block any bubbles which should no longer be shown
501 mBubbleData.notificationRankingUpdated(rankingMap);
502 }
Ned Burns01e38212019-01-03 16:32:52 -0500503 };
504
Mark Renouf71a3af62019-04-08 15:02:54 -0400505 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400506 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400507
Mark Renouf3bc5b362019-04-05 14:37:59 -0400508 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -0400509 public void applyUpdate(BubbleData.Update update) {
510 if (mStackView == null && update.addedBubble != null) {
511 // Lazy init stack view when the first bubble is added.
512 ensureStackViewCreated();
Mark Renouf71a3af62019-04-08 15:02:54 -0400513 }
Mark Renouf82a40e62019-05-23 16:16:24 -0400514
515 // If not yet initialized, ignore all other changes.
516 if (mStackView == null) {
517 return;
518 }
519
520 if (update.addedBubble != null) {
521 mStackView.addBubble(update.addedBubble);
522 }
523
524 // Collapsing? Do this first before remaining steps.
525 if (update.expandedChanged && !update.expanded) {
526 mStackView.setExpanded(false);
527 }
528
529 // Do removals, if any.
530 for (Pair<Bubble, Integer> removed : update.removedBubbles) {
531 final Bubble bubble = removed.first;
532 @DismissReason final int reason = removed.second;
533 mStackView.removeBubble(bubble);
534
535 if (!mBubbleData.hasBubbleWithKey(bubble.getKey())
Mady Mellored99c272019-06-13 15:58:30 -0700536 && !bubble.getEntry().showInShadeWhenBubble()) {
Mark Renouf82a40e62019-05-23 16:16:24 -0400537 // The bubble is gone & the notification is gone, time to actually remove it
Mady Mellored99c272019-06-13 15:58:30 -0700538 mNotificationEntryManager.performRemoveNotification(
539 bubble.getEntry().notification, UNDEFINED_DISMISS_REASON);
Mark Renouf82a40e62019-05-23 16:16:24 -0400540 } else {
Mady Mellor3a0a1b42019-05-23 06:40:21 -0700541 // Update the flag for SysUI
Mady Mellored99c272019-06-13 15:58:30 -0700542 bubble.getEntry().notification.getNotification().flags &= ~FLAG_BUBBLE;
Mady Mellor3a0a1b42019-05-23 06:40:21 -0700543
544 // Make sure NoMan knows it's not a bubble anymore so anyone querying it will
545 // get right result back
Mark Renouf82a40e62019-05-23 16:16:24 -0400546 try {
547 mBarService.onNotificationBubbleChanged(bubble.getKey(),
548 false /* isBubble */);
549 } catch (RemoteException e) {
550 // Bad things have happened
551 }
Mady Mellora54e9fa2019-04-18 13:26:18 -0700552 }
553 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400554
Mark Renouf82a40e62019-05-23 16:16:24 -0400555 if (update.updatedBubble != null) {
556 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400557 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400558
Mark Renouf82a40e62019-05-23 16:16:24 -0400559 if (update.orderChanged) {
560 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -0400561 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400562
Mark Renouf82a40e62019-05-23 16:16:24 -0400563 if (update.selectionChanged) {
564 mStackView.setSelectedBubble(update.selectedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400565 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400566
Mark Renouf82a40e62019-05-23 16:16:24 -0400567 // Expanding? Apply this last.
568 if (update.expandedChanged && update.expanded) {
569 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -0400570 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400571
Mark Renouf71a3af62019-04-08 15:02:54 -0400572 mNotificationEntryManager.updateNotifications();
Lyn Han6c40fe72019-05-08 14:06:33 -0700573 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400574
Issei Suzukia8d07312019-06-07 12:56:19 +0200575 if (DEBUG_BUBBLE_CONTROLLER) {
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400576 Log.d(TAG, "[BubbleData]");
577 Log.d(TAG, formatBubblesString(mBubbleData.getBubbles(),
578 mBubbleData.getSelectedBubble()));
579
580 if (mStackView != null) {
581 Log.d(TAG, "[BubbleStackView]");
582 Log.d(TAG, formatBubblesString(mStackView.getBubblesOnScreen(),
583 mStackView.getExpandedBubble()));
584 }
585 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400586 }
587 };
588
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800589 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400590 * Updates the stack view's suppression flags from the latest config from the zen (do not
591 * disturb) controller.
592 */
593 private void updateStackViewForZenConfig() {
594 final ZenModeConfig zenModeConfig = mZenModeController.getConfig();
595
596 if (zenModeConfig == null || mStackView == null) {
597 return;
598 }
599
600 final int suppressedEffects = zenModeConfig.suppressedVisualEffects;
601 final boolean hideNotificationDotsSelected =
602 (suppressedEffects & SUPPRESSED_EFFECT_BADGE) != 0;
603 final boolean dontPopNotifsOnScreenSelected =
604 (suppressedEffects & SUPPRESSED_EFFECT_PEEK) != 0;
605 final boolean hideFromPullDownShadeSelected =
606 (suppressedEffects & SUPPRESSED_EFFECT_NOTIFICATION_LIST) != 0;
607
608 final boolean dndEnabled = mZenModeController.getZen() != Settings.Global.ZEN_MODE_OFF;
609
610 mStackView.setSuppressNewDot(
611 dndEnabled && hideNotificationDotsSelected);
612 mStackView.setSuppressFlyout(
613 dndEnabled && (dontPopNotifsOnScreenSelected
614 || hideFromPullDownShadeSelected));
615 }
616
617 /**
618 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700619 * Updates the visibility of the bubbles based on current state.
620 * Does not un-bubble, just hides or un-hides. Notifies any
621 * {@link BubbleStateChangeListener}s of visibility changes.
622 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800623 */
Lyn Han6c40fe72019-05-08 14:06:33 -0700624 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800625 if (mStackView == null) {
626 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800627 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800628 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
629 // Bubbles only appear in unlocked shade
630 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
631 } else if (mStackView != null) {
632 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800633 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700634
635 // Let listeners know if bubble state changed.
636 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
637 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
638 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
639 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
640 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
641 }
642
643 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -0800644 }
645
646 /**
647 * Rect indicating the touchable region for the bubble stack / expanded stack.
648 */
649 public Rect getTouchableRegion() {
650 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
651 return null;
652 }
653 mStackView.getBoundsOnScreen(mTempRect);
654 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800655 }
656
Mady Mellor390bff42019-04-05 15:09:01 -0700657 /**
658 * The display id of the expanded view, if the stack is expanded and not occluded by the
659 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
660 */
661 public int getExpandedDisplayId(Context context) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200662 final Bubble bubble = getExpandedBubble(context);
663 return bubble != null ? bubble.getDisplayId() : INVALID_DISPLAY;
664 }
665
666 @Nullable
667 private Bubble getExpandedBubble(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -0700668 if (mStackView == null) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200669 return null;
Joel Galenson4071ddb2019-04-18 13:30:45 -0700670 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200671 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -0700672 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Issei Suzukicac2a502019-04-16 16:52:50 +0200673 final Bubble expandedBubble = mStackView.getExpandedBubble();
674 if (defaultDisplay && expandedBubble != null && isStackExpanded()
Mady Mellor390bff42019-04-05 15:09:01 -0700675 && !mStatusBarWindowController.getPanelExpanded()) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200676 return expandedBubble;
Mady Mellor390bff42019-04-05 15:09:01 -0700677 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200678 return null;
Mady Mellor390bff42019-04-05 15:09:01 -0700679 }
680
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800681 @VisibleForTesting
682 BubbleStackView getStackView() {
683 return mStackView;
684 }
685
Mady Mellor8a1f0252019-04-01 11:31:34 -0700686 private void updateShowInShadeForSuppressNotification(NotificationEntry entry) {
687 boolean suppressNotification = entry.getBubbleMetadata() != null
Mady Mellor6cec3502019-06-17 19:20:49 -0700688 && entry.getBubbleMetadata().isNotificationSuppressed();
Mady Mellorbe341bf2019-06-07 14:11:07 -0700689 Bubble b = mBubbleData.getBubbleWithKey(entry.key);
690 if (b != null && mBubbleData.getSelectedBubble() == b && mBubbleData.isExpanded()) {
691 // If we're expanded & selected don't show in shade
692 suppressNotification = true;
693 }
Mady Mellor8a1f0252019-04-01 11:31:34 -0700694 entry.setShowInShadeWhenBubble(!suppressNotification);
695 }
696
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400697 static String formatBubblesString(List<Bubble> bubbles, Bubble selected) {
698 StringBuilder sb = new StringBuilder();
699 for (Bubble bubble : bubbles) {
700 if (bubble == null) {
701 sb.append(" <null> !!!!!\n");
702 } else {
703 boolean isSelected = (bubble == selected);
704 sb.append(String.format("%s Bubble{act=%12d, ongoing=%d, key=%s}\n",
705 ((isSelected) ? "->" : " "),
706 bubble.getLastActivity(),
707 (bubble.isOngoing() ? 1 : 0),
708 bubble.getKey()));
709 }
710 }
711 return sb.toString();
712 }
713
Mady Mellore80930e2019-03-21 16:00:45 -0700714 /**
Mark Renoufcecc77b2019-01-30 16:32:24 -0500715 * This task stack listener is responsible for responding to tasks moved to the front
716 * which are on the default (main) display. When this happens, expanded bubbles must be
717 * collapsed so the user may interact with the app which was just moved to the front.
718 * <p>
719 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
720 * these calls via a main thread Handler.
721 */
722 @MainThread
723 private class BubbleTaskStackListener extends TaskStackChangeListener {
724
Mark Renoufcecc77b2019-01-30 16:32:24 -0500725 @Override
Mark Renoufc808f062019-02-07 15:20:37 -0500726 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
727 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400728 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500729 }
730 }
731
Mark Renoufcecc77b2019-01-30 16:32:24 -0500732 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -0500733 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -0500734 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400735 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500736 }
737 }
Mark Renouf446251d2019-04-26 10:22:41 -0400738
739 @Override
740 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
741 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
742 mBubbleData.setExpanded(false);
743 }
744 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200745
746 @Override
747 public void onSingleTaskDisplayDrawn(int displayId) {
748 final Bubble expandedBubble = getExpandedBubble(mContext);
749 if (expandedBubble != null && expandedBubble.getDisplayId() == displayId) {
750 expandedBubble.setContentVisibility(true);
751 }
752 }
Issei Suzuki734bc942019-06-05 13:59:52 +0200753
754 @Override
755 public void onSingleTaskDisplayEmpty(int displayId) {
756 final Bubble expandedBubble = getExpandedBubble(mContext);
757 if (expandedBubble == null) {
758 return;
759 }
760 if (expandedBubble.getDisplayId() == displayId) {
761 mBubbleData.setExpanded(false);
762 }
Mady Mellored99c272019-06-13 15:58:30 -0700763 if (expandedBubble.getExpandedView() != null) {
764 expandedBubble.getExpandedView().notifyDisplayEmpty();
Issei Suzuki734bc942019-06-05 13:59:52 +0200765 }
766 }
Mark Renoufcecc77b2019-01-30 16:32:24 -0500767 }
768
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800769 private static boolean areBubblesEnabled(Context context) {
770 return Settings.Secure.getInt(context.getContentResolver(),
771 ENABLE_BUBBLES, 1) != 0;
772 }
Joshua Tsujia19515f2019-02-13 18:02:29 -0500773
Mady Mellorca0c24c2019-05-16 16:14:32 -0700774 /**
775 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
776 *
777 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
778 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
779 *
780 * @param context the context to use.
781 * @param entry the entry to bubble.
782 */
783 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
784 PendingIntent intent = entry.getBubbleMetadata() != null
785 ? entry.getBubbleMetadata().getIntent()
786 : null;
787 if (intent == null) {
788 Log.w(TAG, "Unable to create bubble -- no intent");
789 return false;
790 }
791 ActivityInfo info =
792 intent.getIntent().resolveActivityInfo(context.getPackageManager(), 0);
793 if (info == null) {
794 Log.w(TAG, "Unable to send as bubble -- couldn't find activity info for intent: "
795 + intent);
796 return false;
797 }
798 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
799 Log.w(TAG, "Unable to send as bubble -- activity is not resizable for intent: "
800 + intent);
801 return false;
802 }
803 if (info.documentLaunchMode != DOCUMENT_LAUNCH_ALWAYS) {
804 Log.w(TAG, "Unable to send as bubble -- activity is not documentLaunchMode=always "
805 + "for intent: " + intent);
806 return false;
807 }
808 if ((info.flags & ActivityInfo.FLAG_ALLOW_EMBEDDED) == 0) {
809 Log.w(TAG, "Unable to send as bubble -- activity is not embeddable for intent: "
810 + intent);
811 return false;
812 }
813 return true;
814 }
815
Joshua Tsujia19515f2019-02-13 18:02:29 -0500816 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
817 private class BubblesImeListener extends IPinnedStackListener.Stub {
818
819 @Override
820 public void onListenerRegistered(IPinnedStackController controller) throws RemoteException {
821 }
822
823 @Override
824 public void onMovementBoundsChanged(Rect insetBounds, Rect normalBounds,
825 Rect animatingBounds, boolean fromImeAdjustment, boolean fromShelfAdjustment,
826 int displayRotation) throws RemoteException {}
827
828 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -0500829 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
830 if (mStackView != null && mStackView.getBubbleCount() > 0) {
831 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -0500832 }
833 }
834
835 @Override
836 public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight)
837 throws RemoteException {}
838
839 @Override
840 public void onMinimizedStateChanged(boolean isMinimized) throws RemoteException {}
841
842 @Override
843 public void onActionsChanged(ParceledListSlice actions) throws RemoteException {}
844 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800845}