blob: 72d45c79aae9d2cb846c36f133d137720bb8ffd3 [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
Mady Mellore80930e2019-03-21 16:00:45 -070045import android.app.ActivityManager;
Mark Renoufc808f062019-02-07 15:20:37 -050046import android.app.ActivityManager.RunningTaskInfo;
Mady Mellor66efd5e2019-05-15 13:38:11 -070047import android.app.NotificationManager;
Mady Mellorca0c24c2019-05-16 16:14:32 -070048import android.app.PendingIntent;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080049import android.content.Context;
Mady Mellorca0c24c2019-05-16 16:14:32 -070050import android.content.pm.ActivityInfo;
Joshua Tsujia19515f2019-02-13 18:02:29 -050051import android.content.pm.ParceledListSlice;
Joshua Tsujif418f9e2019-04-04 17:09:53 -040052import android.content.res.Configuration;
Mady Mellord1c78b262018-11-06 18:04:40 -080053import android.graphics.Rect;
Mark Renoufcecc77b2019-01-30 16:32:24 -050054import android.os.RemoteException;
Mady Mellorb4991e62019-01-10 15:14:51 -080055import android.os.ServiceManager;
Mady Mellorceced172018-11-27 11:18:39 -080056import android.provider.Settings;
Mark Renoufbbcf07f2019-05-09 10:42:43 -040057import android.service.notification.NotificationListenerService.RankingMap;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040058import android.service.notification.ZenModeConfig;
Mark Renouf9ba6cea2019-04-17 11:53:50 -040059import android.util.Log;
Mark Renouf82a40e62019-05-23 16:16:24 -040060import android.util.Pair;
Mark Renoufcecc77b2019-01-30 16:32:24 -050061import android.view.Display;
Joshua Tsujia19515f2019-02-13 18:02:29 -050062import android.view.IPinnedStackController;
63import android.view.IPinnedStackListener;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080064import android.view.ViewGroup;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080065import android.widget.FrameLayout;
66
Mark Renouf08bc42a2019-03-07 13:01:59 -050067import androidx.annotation.IntDef;
Mark Renouf658c6bc2019-01-30 10:26:54 -050068import androidx.annotation.MainThread;
Joshua Tsujic650a142019-05-22 11:31:19 -040069import androidx.annotation.Nullable;
Mark Renouf658c6bc2019-01-30 10:26:54 -050070
Mady Mellorebdbbb92018-11-15 14:36:48 -080071import com.android.internal.annotations.VisibleForTesting;
Mady Mellora54e9fa2019-04-18 13:26:18 -070072import com.android.internal.statusbar.IStatusBarService;
Ned Burns01e38212019-01-03 16:32:52 -050073import com.android.systemui.Dependency;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080074import com.android.systemui.R;
Beverly8fdb5332019-02-04 14:29:49 -050075import com.android.systemui.plugins.statusbar.StatusBarStateController;
Mark Renoufcecc77b2019-01-30 16:32:24 -050076import com.android.systemui.shared.system.ActivityManagerWrapper;
77import com.android.systemui.shared.system.TaskStackChangeListener;
Joshua Tsujia19515f2019-02-13 18:02:29 -050078import com.android.systemui.shared.system.WindowManagerWrapper;
Mady Mellorc2ff0112019-03-28 14:18:06 -070079import com.android.systemui.statusbar.NotificationRemoveInterceptor;
Ned Burns01e38212019-01-03 16:32:52 -050080import com.android.systemui.statusbar.notification.NotificationEntryListener;
81import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080082import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050083import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Ned Burns1a5e22f2019-02-14 15:11:52 -050084import com.android.systemui.statusbar.notification.row.NotificationContentInflater.InflationFlag;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080085import com.android.systemui.statusbar.phone.StatusBarWindowController;
Lyn Hanf1c9b8b2019-03-14 16:49:48 -070086import com.android.systemui.statusbar.policy.ConfigurationController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -040087import com.android.systemui.statusbar.policy.ZenModeController;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080088
Mark Renouf08bc42a2019-03-07 13:01:59 -050089import java.lang.annotation.Retention;
Mark Renoufba5ab512019-05-02 15:21:01 -040090import java.lang.annotation.Target;
Mady Mellore80930e2019-03-21 16:00:45 -070091import java.util.List;
Mark Renouf08bc42a2019-03-07 13:01:59 -050092
Jason Monk27d01a622018-12-10 15:57:09 -050093import javax.inject.Inject;
94import javax.inject.Singleton;
95
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080096/**
97 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
98 * Bubbles can be expanded to show more content.
99 *
100 * The controller manages addition, removal, and visible state of bubbles on screen.
101 */
Jason Monk27d01a622018-12-10 15:57:09 -0500102@Singleton
Mark Renouf71a3af62019-04-08 15:02:54 -0400103public class BubbleController implements ConfigurationController.ConfigurationListener {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800104
Issei Suzukia8d07312019-06-07 12:56:19 +0200105 private static final String TAG = TAG_WITH_CLASS_NAME ? "BubbleController" : TAG_BUBBLES;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800106
Mark Renouf08bc42a2019-03-07 13:01:59 -0500107 @Retention(SOURCE)
108 @IntDef({DISMISS_USER_GESTURE, DISMISS_AGED, DISMISS_TASK_FINISHED, DISMISS_BLOCKED,
Mady Melloraa8fef22019-04-11 13:36:40 -0700109 DISMISS_NOTIF_CANCEL, DISMISS_ACCESSIBILITY_ACTION, DISMISS_NO_LONGER_BUBBLE})
Mark Renoufba5ab512019-05-02 15:21:01 -0400110 @Target({FIELD, LOCAL_VARIABLE, PARAMETER})
Mark Renouf08bc42a2019-03-07 13:01:59 -0500111 @interface DismissReason {}
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700112
Mark Renouf08bc42a2019-03-07 13:01:59 -0500113 static final int DISMISS_USER_GESTURE = 1;
114 static final int DISMISS_AGED = 2;
115 static final int DISMISS_TASK_FINISHED = 3;
116 static final int DISMISS_BLOCKED = 4;
117 static final int DISMISS_NOTIF_CANCEL = 5;
118 static final int DISMISS_ACCESSIBILITY_ACTION = 6;
Mady Melloraa8fef22019-04-11 13:36:40 -0700119 static final int DISMISS_NO_LONGER_BUBBLE = 7;
Mark Renouf08bc42a2019-03-07 13:01:59 -0500120
Joshua Tsuji4accf5982019-04-22 17:36:11 -0400121 public static final int MAX_BUBBLES = 5; // TODO: actually enforce this
Joshua Tsuji25a4b7b2019-03-22 14:11:06 -0400122
Mady Mellor44ee2fe2019-01-30 17:51:16 -0800123 /** Flag to enable or disable the entire feature */
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800124 private static final String ENABLE_BUBBLES = "experiment_enable_bubbles";
Joshua Tsuji010c2b12019-02-25 18:11:25 -0500125
Ned Burns01e38212019-01-03 16:32:52 -0500126 private final Context mContext;
127 private final NotificationEntryManager mNotificationEntryManager;
Mark Renoufcecc77b2019-01-30 16:32:24 -0500128 private final BubbleTaskStackListener mTaskStackListener;
Mady Mellord1c78b262018-11-06 18:04:40 -0800129 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -0800130 private BubbleExpandListener mExpandListener;
Issei Suzukic0387542019-03-08 17:31:14 +0100131 @Nullable private BubbleStackView.SurfaceSynchronizer mSurfaceSynchronizer;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800132
Mady Mellor3dff9e62019-02-05 18:12:53 -0800133 private BubbleData mBubbleData;
Joshua Tsujic650a142019-05-22 11:31:19 -0400134 @Nullable private BubbleStackView mStackView;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800135
136 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -0500137 private final StatusBarWindowController mStatusBarWindowController;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400138 private final ZenModeController mZenModeController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800139 private StatusBarStateListener mStatusBarStateListener;
140
Mady Melloraa8fef22019-04-11 13:36:40 -0700141 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700142 private IStatusBarService mBarService;
Mady Mellorb4991e62019-01-10 15:14:51 -0800143
Mady Mellord1c78b262018-11-06 18:04:40 -0800144 // Used for determining view rect for touch interaction
145 private Rect mTempRect = new Rect();
146
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400147 /** Last known orientation, used to detect orientation changes in {@link #onConfigChanged}. */
148 private int mOrientation = Configuration.ORIENTATION_UNDEFINED;
149
Mady Mellor5549dd22018-11-06 18:07:34 -0800150 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800151 * Listener to be notified when some states of the bubbles change.
152 */
153 public interface BubbleStateChangeListener {
154 /**
155 * Called when the stack has bubbles or no longer has bubbles.
156 */
157 void onHasBubblesChanged(boolean hasBubbles);
158 }
159
Mady Mellorcd9b1302018-11-06 18:08:04 -0800160 /**
161 * Listener to find out about stack expansion / collapse events.
162 */
163 public interface BubbleExpandListener {
164 /**
165 * Called when the expansion state of the bubble stack changes.
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700166 *
Mady Mellorcd9b1302018-11-06 18:08:04 -0800167 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800168 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800169 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800170 void onBubbleExpandChanged(boolean isExpanding, String key);
171 }
172
173 /**
174 * Listens for the current state of the status bar and updates the visibility state
175 * of bubbles as needed.
176 */
177 private class StatusBarStateListener implements StatusBarStateController.StateListener {
178 private int mState;
179 /**
180 * Returns the current status bar state.
181 */
182 public int getCurrentState() {
183 return mState;
184 }
185
186 @Override
187 public void onStateChanged(int newState) {
188 mState = newState;
Mark Renouf71a3af62019-04-08 15:02:54 -0400189 boolean shouldCollapse = (mState != SHADE);
190 if (shouldCollapse) {
191 collapseStack();
192 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700193 updateStack();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800194 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800195 }
196
Jason Monk27d01a622018-12-10 15:57:09 -0500197 @Inject
Mady Mellorcfd06c12019-02-13 14:32:12 -0800198 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Mady Melloraa8fef22019-04-11 13:36:40 -0700199 BubbleData data, ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400200 NotificationInterruptionStateProvider interruptionStateProvider,
201 ZenModeController zenModeController) {
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700202 this(context, statusBarWindowController, data, null /* synchronizer */,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400203 configurationController, interruptionStateProvider, zenModeController);
Issei Suzukic0387542019-03-08 17:31:14 +0100204 }
205
206 public BubbleController(Context context, StatusBarWindowController statusBarWindowController,
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700207 BubbleData data, @Nullable BubbleStackView.SurfaceSynchronizer synchronizer,
Mady Melloraa8fef22019-04-11 13:36:40 -0700208 ConfigurationController configurationController,
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400209 NotificationInterruptionStateProvider interruptionStateProvider,
210 ZenModeController zenModeController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800211 mContext = context;
Mady Melloraa8fef22019-04-11 13:36:40 -0700212 mNotificationInterruptionStateProvider = interruptionStateProvider;
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400213 mZenModeController = zenModeController;
214 mZenModeController.addCallback(new ZenModeController.Callback() {
215 @Override
216 public void onZenChanged(int zen) {
217 updateStackViewForZenConfig();
218 }
219
220 @Override
221 public void onConfigChanged(ZenModeConfig config) {
222 updateStackViewForZenConfig();
223 }
224 });
Mady Melloraa8fef22019-04-11 13:36:40 -0700225
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700226 configurationController.addCallback(this /* configurationListener */);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800227
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400228 mBubbleData = data;
229 mBubbleData.setListener(mBubbleDataListener);
230
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800231 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class);
Ned Burns01e38212019-01-03 16:32:52 -0500232 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorc2ff0112019-03-28 14:18:06 -0700233 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor);
Mady Mellorb4991e62019-01-10 15:14:51 -0800234
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800235 mStatusBarWindowController = statusBarWindowController;
236 mStatusBarStateListener = new StatusBarStateListener();
237 Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500238
Mark Renoufcecc77b2019-01-30 16:32:24 -0500239 mTaskStackListener = new BubbleTaskStackListener();
240 ActivityManagerWrapper.getInstance().registerTaskStackListener(mTaskStackListener);
Mady Mellor3dff9e62019-02-05 18:12:53 -0800241
Joshua Tsujia19515f2019-02-13 18:02:29 -0500242 try {
243 WindowManagerWrapper.getInstance().addPinnedStackListener(new BubblesImeListener());
244 } catch (RemoteException e) {
245 e.printStackTrace();
246 }
Issei Suzukic0387542019-03-08 17:31:14 +0100247 mSurfaceSynchronizer = synchronizer;
Mady Mellora54e9fa2019-04-18 13:26:18 -0700248
249 mBarService = IStatusBarService.Stub.asInterface(
250 ServiceManager.getService(Context.STATUS_BAR_SERVICE));
Mady Mellor5549dd22018-11-06 18:07:34 -0800251 }
252
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400253 /**
254 * BubbleStackView is lazily created by this method the first time a Bubble is added. This
255 * method initializes the stack view and adds it to the StatusBar just above the scrim.
256 */
257 private void ensureStackViewCreated() {
258 if (mStackView == null) {
259 mStackView = new BubbleStackView(mContext, mBubbleData, mSurfaceSynchronizer);
260 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
Lyn Hanbde48202019-05-29 19:18:29 -0700261 int bubbleScrimIndex = sbv.indexOfChild(sbv.findViewById(R.id.scrim_for_bubble));
262 int stackIndex = bubbleScrimIndex + 1; // Show stack above bubble scrim.
263 sbv.addView(mStackView, stackIndex,
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400264 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
265 if (mExpandListener != null) {
266 mStackView.setExpandListener(mExpandListener);
267 }
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400268
269 updateStackViewForZenConfig();
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400270 }
271 }
272
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700273 @Override
274 public void onUiModeChanged() {
275 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700276 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700277 }
278 }
279
280 @Override
281 public void onOverlayChanged() {
282 if (mStackView != null) {
Lyn Han02cca812019-04-02 16:27:32 -0700283 mStackView.onThemeChanged();
Lyn Hanf1c9b8b2019-03-14 16:49:48 -0700284 }
285 }
286
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400287 @Override
288 public void onConfigChanged(Configuration newConfig) {
289 if (mStackView != null && newConfig != null && newConfig.orientation != mOrientation) {
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400290 mOrientation = newConfig.orientation;
Lyn Hanf4730312019-06-18 11:18:58 -0700291 mStackView.onOrientationChanged(newConfig.orientation);
Joshua Tsujif418f9e2019-04-04 17:09:53 -0400292 }
293 }
294
Mady Mellor5549dd22018-11-06 18:07:34 -0800295 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800296 * Set a listener to be notified when some states of the bubbles change.
297 */
298 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
299 mStateChangeListener = listener;
300 }
301
302 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800303 * Set a listener to be notified of bubble expand events.
304 */
305 public void setExpandListener(BubbleExpandListener listener) {
Issei Suzukiac9fcb72019-02-04 17:45:57 +0100306 mExpandListener = ((isExpanding, key) -> {
307 if (listener != null) {
308 listener.onBubbleExpandChanged(isExpanding, key);
309 }
310 mStatusBarWindowController.setBubbleExpanded(isExpanding);
311 });
Mady Mellorcd9b1302018-11-06 18:08:04 -0800312 if (mStackView != null) {
313 mStackView.setExpandListener(mExpandListener);
314 }
315 }
316
317 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800318 * Whether or not there are bubbles present, regardless of them being visible on the
319 * screen (e.g. if on AOD).
320 */
321 public boolean hasBubbles() {
Mady Mellor3dff9e62019-02-05 18:12:53 -0800322 if (mStackView == null) {
323 return false;
324 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400325 return mBubbleData.hasBubbles();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800326 }
327
328 /**
329 * Whether the stack of bubbles is expanded or not.
330 */
331 public boolean isStackExpanded() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400332 return mBubbleData.isExpanded();
333 }
334
335 /**
336 * Tell the stack of bubbles to expand.
337 */
338 public void expandStack() {
339 mBubbleData.setExpanded(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800340 }
341
342 /**
343 * Tell the stack of bubbles to collapse.
344 */
345 public void collapseStack() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400346 mBubbleData.setExpanded(false /* expanded */);
347 }
348
349 void selectBubble(Bubble bubble) {
350 mBubbleData.setSelectedBubble(bubble);
351 }
352
353 @VisibleForTesting
354 void selectBubble(String key) {
355 Bubble bubble = mBubbleData.getBubbleWithKey(key);
356 selectBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800357 }
358
359 /**
Mark Renouffec45da2019-03-13 13:24:27 -0400360 * Request the stack expand if needed, then select the specified Bubble as current.
361 *
362 * @param notificationKey the notification key for the bubble to be selected
363 */
364 public void expandStackAndSelectBubble(String notificationKey) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400365 Bubble bubble = mBubbleData.getBubbleWithKey(notificationKey);
366 if (bubble != null) {
367 mBubbleData.setSelectedBubble(bubble);
368 mBubbleData.setExpanded(true);
Mark Renouffec45da2019-03-13 13:24:27 -0400369 }
370 }
371
372 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800373 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
374 */
Mark Renouf08bc42a2019-03-07 13:01:59 -0500375 void dismissStack(@DismissReason int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400376 mBubbleData.dismissAll(reason);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800377 }
378
379 /**
Mark Renouf041d7262019-02-06 12:09:41 -0500380 * Directs a back gesture at the bubble stack. When opened, the current expanded bubble
381 * is forwarded a back key down/up pair.
382 */
383 public void performBackPressIfNeeded() {
384 if (mStackView != null) {
385 mStackView.performBackPressIfNeeded();
386 }
387 }
388
389 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800390 * Adds or updates a bubble associated with the provided notification entry.
391 *
Mark Renouf8b6a3c62019-04-09 10:17:40 -0400392 * @param notif the notification associated with this bubble.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800393 */
Mark Renouff97ed462019-04-05 13:46:24 -0400394 void updateBubble(NotificationEntry notif) {
Mady Mellor66efd5e2019-05-15 13:38:11 -0700395 // If this is an interruptive notif, mark that it's interrupted
396 if (notif.importance >= NotificationManager.IMPORTANCE_HIGH) {
397 notif.setInterruption();
398 }
Mark Renouf71a3af62019-04-08 15:02:54 -0400399 mBubbleData.notificationEntryUpdated(notif);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800400 }
401
402 /**
403 * Removes the bubble associated with the {@param uri}.
Mark Renouf658c6bc2019-01-30 10:26:54 -0500404 * <p>
405 * Must be called from the main thread.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800406 */
Mark Renouf658c6bc2019-01-30 10:26:54 -0500407 @MainThread
Mark Renouf08bc42a2019-03-07 13:01:59 -0500408 void removeBubble(String key, int reason) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400409 // TEMP: refactor to change this to pass entry
410 Bubble bubble = mBubbleData.getBubbleWithKey(key);
411 if (bubble != null) {
412 mBubbleData.notificationEntryRemoved(bubble.entry, reason);
Mady Mellore8e07712019-01-23 12:45:33 -0800413 }
414 }
415
Ned Burns01e38212019-01-03 16:32:52 -0500416 @SuppressWarnings("FieldCanBeLocal")
Mady Mellorc2ff0112019-03-28 14:18:06 -0700417 private final NotificationRemoveInterceptor mRemoveInterceptor =
418 new NotificationRemoveInterceptor() {
419 @Override
420 public boolean onNotificationRemoveRequested(String key, int reason) {
421 if (!mBubbleData.hasBubbleWithKey(key)) {
422 return false;
423 }
424 NotificationEntry entry = mBubbleData.getBubbleWithKey(key).entry;
425
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.
438 boolean bubbleExtended = entry.isBubble() && !entry.isBubbleDismissed()
439 && userRemovedNotif;
440 if (bubbleExtended) {
441 entry.setShowInShadeWhenBubble(false);
442 if (mStackView != null) {
443 mStackView.updateDotVisibility(entry.key);
444 }
445 mNotificationEntryManager.updateNotifications();
446 return true;
447 } else if (!userRemovedNotif && !entry.isBubbleDismissed()) {
448 // 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 Mellor3f2efdb2018-11-21 11:30:45 -0800492 entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed
Mark Renouff97ed462019-04-05 13:46:24 -0400493 updateBubble(entry);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800494 }
495 }
Mark Renoufbbcf07f2019-05-09 10:42:43 -0400496
497 @Override
498 public void onNotificationRankingUpdated(RankingMap rankingMap) {
499 // Forward to BubbleData to block any bubbles which should no longer be shown
500 mBubbleData.notificationRankingUpdated(rankingMap);
501 }
Ned Burns01e38212019-01-03 16:32:52 -0500502 };
503
Mark Renouf71a3af62019-04-08 15:02:54 -0400504 @SuppressWarnings("FieldCanBeLocal")
Mark Renouf3bc5b362019-04-05 14:37:59 -0400505 private final BubbleData.Listener mBubbleDataListener = new BubbleData.Listener() {
Mark Renouf71a3af62019-04-08 15:02:54 -0400506
Mark Renouf3bc5b362019-04-05 14:37:59 -0400507 @Override
Mark Renouf82a40e62019-05-23 16:16:24 -0400508 public void applyUpdate(BubbleData.Update update) {
509 if (mStackView == null && update.addedBubble != null) {
510 // Lazy init stack view when the first bubble is added.
511 ensureStackViewCreated();
Mark Renouf71a3af62019-04-08 15:02:54 -0400512 }
Mark Renouf82a40e62019-05-23 16:16:24 -0400513
514 // If not yet initialized, ignore all other changes.
515 if (mStackView == null) {
516 return;
517 }
518
519 if (update.addedBubble != null) {
520 mStackView.addBubble(update.addedBubble);
521 }
522
523 // Collapsing? Do this first before remaining steps.
524 if (update.expandedChanged && !update.expanded) {
525 mStackView.setExpanded(false);
526 }
527
528 // Do removals, if any.
529 for (Pair<Bubble, Integer> removed : update.removedBubbles) {
530 final Bubble bubble = removed.first;
531 @DismissReason final int reason = removed.second;
532 mStackView.removeBubble(bubble);
533
534 if (!mBubbleData.hasBubbleWithKey(bubble.getKey())
535 && !bubble.entry.showInShadeWhenBubble()) {
536 // The bubble is gone & the notification is gone, time to actually remove it
537 mNotificationEntryManager.performRemoveNotification(bubble.entry.notification,
538 UNDEFINED_DISMISS_REASON);
539 } else {
Mady Mellor3a0a1b42019-05-23 06:40:21 -0700540 // Update the flag for SysUI
541 bubble.entry.notification.getNotification().flags &= ~FLAG_BUBBLE;
542
543 // Make sure NoMan knows it's not a bubble anymore so anyone querying it will
544 // get right result back
Mark Renouf82a40e62019-05-23 16:16:24 -0400545 try {
546 mBarService.onNotificationBubbleChanged(bubble.getKey(),
547 false /* isBubble */);
548 } catch (RemoteException e) {
549 // Bad things have happened
550 }
Mady Mellora54e9fa2019-04-18 13:26:18 -0700551 }
552 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400553
Mark Renouf82a40e62019-05-23 16:16:24 -0400554 if (update.updatedBubble != null) {
555 mStackView.updateBubble(update.updatedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400556 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400557
Mark Renouf82a40e62019-05-23 16:16:24 -0400558 if (update.orderChanged) {
559 mStackView.updateBubbleOrder(update.bubbles);
Mark Renoufba5ab512019-05-02 15:21:01 -0400560 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400561
Mark Renouf82a40e62019-05-23 16:16:24 -0400562 if (update.selectionChanged) {
563 mStackView.setSelectedBubble(update.selectedBubble);
Mark Renouf71a3af62019-04-08 15:02:54 -0400564 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400565
Mark Renouf82a40e62019-05-23 16:16:24 -0400566 // Expanding? Apply this last.
567 if (update.expandedChanged && update.expanded) {
568 mStackView.setExpanded(true);
Mark Renouf71a3af62019-04-08 15:02:54 -0400569 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400570
Mark Renouf71a3af62019-04-08 15:02:54 -0400571 mNotificationEntryManager.updateNotifications();
Lyn Han6c40fe72019-05-08 14:06:33 -0700572 updateStack();
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400573
Issei Suzukia8d07312019-06-07 12:56:19 +0200574 if (DEBUG_BUBBLE_CONTROLLER) {
Mark Renouf9ba6cea2019-04-17 11:53:50 -0400575 Log.d(TAG, "[BubbleData]");
576 Log.d(TAG, formatBubblesString(mBubbleData.getBubbles(),
577 mBubbleData.getSelectedBubble()));
578
579 if (mStackView != null) {
580 Log.d(TAG, "[BubbleStackView]");
581 Log.d(TAG, formatBubblesString(mStackView.getBubblesOnScreen(),
582 mStackView.getExpandedBubble()));
583 }
584 }
Mark Renouf3bc5b362019-04-05 14:37:59 -0400585 }
586 };
587
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800588 /**
Joshua Tsujidd4d9f92019-05-13 13:57:38 -0400589 * Updates the stack view's suppression flags from the latest config from the zen (do not
590 * disturb) controller.
591 */
592 private void updateStackViewForZenConfig() {
593 final ZenModeConfig zenModeConfig = mZenModeController.getConfig();
594
595 if (zenModeConfig == null || mStackView == null) {
596 return;
597 }
598
599 final int suppressedEffects = zenModeConfig.suppressedVisualEffects;
600 final boolean hideNotificationDotsSelected =
601 (suppressedEffects & SUPPRESSED_EFFECT_BADGE) != 0;
602 final boolean dontPopNotifsOnScreenSelected =
603 (suppressedEffects & SUPPRESSED_EFFECT_PEEK) != 0;
604 final boolean hideFromPullDownShadeSelected =
605 (suppressedEffects & SUPPRESSED_EFFECT_NOTIFICATION_LIST) != 0;
606
607 final boolean dndEnabled = mZenModeController.getZen() != Settings.Global.ZEN_MODE_OFF;
608
609 mStackView.setSuppressNewDot(
610 dndEnabled && hideNotificationDotsSelected);
611 mStackView.setSuppressFlyout(
612 dndEnabled && (dontPopNotifsOnScreenSelected
613 || hideFromPullDownShadeSelected));
614 }
615
616 /**
617 * Lets any listeners know if bubble state has changed.
Lyn Han6c40fe72019-05-08 14:06:33 -0700618 * Updates the visibility of the bubbles based on current state.
619 * Does not un-bubble, just hides or un-hides. Notifies any
620 * {@link BubbleStateChangeListener}s of visibility changes.
621 * Updates stack description for TalkBack focus.
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800622 */
Lyn Han6c40fe72019-05-08 14:06:33 -0700623 public void updateStack() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800624 if (mStackView == null) {
625 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800626 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800627 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
628 // Bubbles only appear in unlocked shade
629 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
630 } else if (mStackView != null) {
631 mStackView.setVisibility(INVISIBLE);
Mady Mellor5549dd22018-11-06 18:07:34 -0800632 }
Lyn Han6c40fe72019-05-08 14:06:33 -0700633
634 // Let listeners know if bubble state changed.
635 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
636 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
637 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
638 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
639 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
640 }
641
642 mStackView.updateContentDescription();
Mady Mellord1c78b262018-11-06 18:04:40 -0800643 }
644
645 /**
646 * Rect indicating the touchable region for the bubble stack / expanded stack.
647 */
648 public Rect getTouchableRegion() {
649 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
650 return null;
651 }
652 mStackView.getBoundsOnScreen(mTempRect);
653 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800654 }
655
Mady Mellor390bff42019-04-05 15:09:01 -0700656 /**
657 * The display id of the expanded view, if the stack is expanded and not occluded by the
658 * status bar, otherwise returns {@link Display#INVALID_DISPLAY}.
659 */
660 public int getExpandedDisplayId(Context context) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200661 final Bubble bubble = getExpandedBubble(context);
662 return bubble != null ? bubble.getDisplayId() : INVALID_DISPLAY;
663 }
664
665 @Nullable
666 private Bubble getExpandedBubble(Context context) {
Joel Galenson4071ddb2019-04-18 13:30:45 -0700667 if (mStackView == null) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200668 return null;
Joel Galenson4071ddb2019-04-18 13:30:45 -0700669 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200670 final boolean defaultDisplay = context.getDisplay() != null
Mady Mellor390bff42019-04-05 15:09:01 -0700671 && context.getDisplay().getDisplayId() == DEFAULT_DISPLAY;
Issei Suzukicac2a502019-04-16 16:52:50 +0200672 final Bubble expandedBubble = mStackView.getExpandedBubble();
673 if (defaultDisplay && expandedBubble != null && isStackExpanded()
Mady Mellor390bff42019-04-05 15:09:01 -0700674 && !mStatusBarWindowController.getPanelExpanded()) {
Issei Suzukicac2a502019-04-16 16:52:50 +0200675 return expandedBubble;
Mady Mellor390bff42019-04-05 15:09:01 -0700676 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200677 return null;
Mady Mellor390bff42019-04-05 15:09:01 -0700678 }
679
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800680 @VisibleForTesting
681 BubbleStackView getStackView() {
682 return mStackView;
683 }
684
Mady Mellor8a1f0252019-04-01 11:31:34 -0700685 private void updateShowInShadeForSuppressNotification(NotificationEntry entry) {
686 boolean suppressNotification = entry.getBubbleMetadata() != null
Mady Mellorc529d6d2019-04-16 14:22:52 -0700687 && entry.getBubbleMetadata().isNotificationSuppressed()
Steven Wu8ba8ca92019-04-11 10:47:42 -0400688 && isForegroundApp(mContext, entry.notification.getPackageName());
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 /**
715 * Return true if the applications with the package name is running in foreground.
716 *
Steven Wu8ba8ca92019-04-11 10:47:42 -0400717 * @param context application context.
Mady Mellore80930e2019-03-21 16:00:45 -0700718 * @param pkgName application package name.
719 */
Steven Wu8ba8ca92019-04-11 10:47:42 -0400720 public static boolean isForegroundApp(Context context, String pkgName) {
721 ActivityManager am = context.getSystemService(ActivityManager.class);
Mady Mellore80930e2019-03-21 16:00:45 -0700722 List<RunningTaskInfo> tasks = am.getRunningTasks(1 /* maxNum */);
723 return !tasks.isEmpty() && pkgName.equals(tasks.get(0).topActivity.getPackageName());
724 }
725
Mark Renoufcecc77b2019-01-30 16:32:24 -0500726 /**
727 * This task stack listener is responsible for responding to tasks moved to the front
728 * which are on the default (main) display. When this happens, expanded bubbles must be
729 * collapsed so the user may interact with the app which was just moved to the front.
730 * <p>
731 * This listener is registered with SystemUI's ActivityManagerWrapper which dispatches
732 * these calls via a main thread Handler.
733 */
734 @MainThread
735 private class BubbleTaskStackListener extends TaskStackChangeListener {
736
Mark Renoufcecc77b2019-01-30 16:32:24 -0500737 @Override
Mark Renoufc808f062019-02-07 15:20:37 -0500738 public void onTaskMovedToFront(RunningTaskInfo taskInfo) {
739 if (mStackView != null && taskInfo.displayId == Display.DEFAULT_DISPLAY) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400740 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500741 }
742 }
743
Mark Renoufcecc77b2019-01-30 16:32:24 -0500744 @Override
Mark Renoufa12e8762019-03-07 15:43:01 -0500745 public void onActivityLaunchOnSecondaryDisplayRerouted() {
Mark Renoufcecc77b2019-01-30 16:32:24 -0500746 if (mStackView != null) {
Mark Renouf71a3af62019-04-08 15:02:54 -0400747 mBubbleData.setExpanded(false);
Mark Renoufcecc77b2019-01-30 16:32:24 -0500748 }
749 }
Mark Renouf446251d2019-04-26 10:22:41 -0400750
751 @Override
752 public void onBackPressedOnTaskRoot(RunningTaskInfo taskInfo) {
753 if (mStackView != null && taskInfo.displayId == getExpandedDisplayId(mContext)) {
754 mBubbleData.setExpanded(false);
755 }
756 }
Issei Suzukicac2a502019-04-16 16:52:50 +0200757
758 @Override
759 public void onSingleTaskDisplayDrawn(int displayId) {
760 final Bubble expandedBubble = getExpandedBubble(mContext);
761 if (expandedBubble != null && expandedBubble.getDisplayId() == displayId) {
762 expandedBubble.setContentVisibility(true);
763 }
764 }
Issei Suzuki734bc942019-06-05 13:59:52 +0200765
766 @Override
767 public void onSingleTaskDisplayEmpty(int displayId) {
768 final Bubble expandedBubble = getExpandedBubble(mContext);
769 if (expandedBubble == null) {
770 return;
771 }
772 if (expandedBubble.getDisplayId() == displayId) {
773 mBubbleData.setExpanded(false);
774 }
775 if (expandedBubble.expandedView != null) {
776 expandedBubble.expandedView.notifyDisplayEmpty();
777 }
778 }
Mark Renoufcecc77b2019-01-30 16:32:24 -0500779 }
780
Mady Mellorf6e3ac02019-01-29 10:37:52 -0800781 private static boolean areBubblesEnabled(Context context) {
782 return Settings.Secure.getInt(context.getContentResolver(),
783 ENABLE_BUBBLES, 1) != 0;
784 }
Joshua Tsujia19515f2019-02-13 18:02:29 -0500785
Mady Mellorca0c24c2019-05-16 16:14:32 -0700786 /**
787 * Whether an intent is properly configured to display in an {@link android.app.ActivityView}.
788 *
789 * Keep checks in sync with NotificationManagerService#canLaunchInActivityView. Typically
790 * that should filter out any invalid bubbles, but should protect SysUI side just in case.
791 *
792 * @param context the context to use.
793 * @param entry the entry to bubble.
794 */
795 static boolean canLaunchInActivityView(Context context, NotificationEntry entry) {
796 PendingIntent intent = entry.getBubbleMetadata() != null
797 ? entry.getBubbleMetadata().getIntent()
798 : null;
799 if (intent == null) {
800 Log.w(TAG, "Unable to create bubble -- no intent");
801 return false;
802 }
803 ActivityInfo info =
804 intent.getIntent().resolveActivityInfo(context.getPackageManager(), 0);
805 if (info == null) {
806 Log.w(TAG, "Unable to send as bubble -- couldn't find activity info for intent: "
807 + intent);
808 return false;
809 }
810 if (!ActivityInfo.isResizeableMode(info.resizeMode)) {
811 Log.w(TAG, "Unable to send as bubble -- activity is not resizable for intent: "
812 + intent);
813 return false;
814 }
815 if (info.documentLaunchMode != DOCUMENT_LAUNCH_ALWAYS) {
816 Log.w(TAG, "Unable to send as bubble -- activity is not documentLaunchMode=always "
817 + "for intent: " + intent);
818 return false;
819 }
820 if ((info.flags & ActivityInfo.FLAG_ALLOW_EMBEDDED) == 0) {
821 Log.w(TAG, "Unable to send as bubble -- activity is not embeddable for intent: "
822 + intent);
823 return false;
824 }
825 return true;
826 }
827
Joshua Tsujia19515f2019-02-13 18:02:29 -0500828 /** PinnedStackListener that dispatches IME visibility updates to the stack. */
829 private class BubblesImeListener extends IPinnedStackListener.Stub {
830
831 @Override
832 public void onListenerRegistered(IPinnedStackController controller) throws RemoteException {
833 }
834
835 @Override
836 public void onMovementBoundsChanged(Rect insetBounds, Rect normalBounds,
837 Rect animatingBounds, boolean fromImeAdjustment, boolean fromShelfAdjustment,
838 int displayRotation) throws RemoteException {}
839
840 @Override
Joshua Tsujid9422832019-03-05 13:32:37 -0500841 public void onImeVisibilityChanged(boolean imeVisible, int imeHeight) {
842 if (mStackView != null && mStackView.getBubbleCount() > 0) {
843 mStackView.post(() -> mStackView.onImeVisibilityChanged(imeVisible, imeHeight));
Joshua Tsujia19515f2019-02-13 18:02:29 -0500844 }
845 }
846
847 @Override
848 public void onShelfVisibilityChanged(boolean shelfVisible, int shelfHeight)
849 throws RemoteException {}
850
851 @Override
852 public void onMinimizedStateChanged(boolean isMinimized) throws RemoteException {}
853
854 @Override
855 public void onActionsChanged(ParceledListSlice actions) throws RemoteException {}
856 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800857}