blob: e3f6add99df7b02838c5fe8962256bd1a7172e3b [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
Mady Mellorb4991e62019-01-10 15:14:51 -080026import android.annotation.Nullable;
27import android.app.INotificationManager;
Mady Mellor5549dd22018-11-06 18:07:34 -080028import android.app.Notification;
Mady Mellorc18ba962019-01-29 11:11:56 -080029import android.app.NotificationChannel;
Mark Renouf89b1a4a2018-12-04 14:59:45 -050030import android.app.PendingIntent;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080031import android.content.Context;
Mark Renouf89b1a4a2018-12-04 14:59:45 -050032import android.content.pm.ActivityInfo;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080033import android.graphics.Point;
Mady Mellord1c78b262018-11-06 18:04:40 -080034import android.graphics.Rect;
Mady Mellorb4991e62019-01-10 15:14:51 -080035import android.os.RemoteException;
36import android.os.ServiceManager;
Mady Mellorceced172018-11-27 11:18:39 -080037import android.provider.Settings;
Mady Mellor5549dd22018-11-06 18:07:34 -080038import android.service.notification.StatusBarNotification;
Mark Renouf89b1a4a2018-12-04 14:59:45 -050039import android.util.Log;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080040import android.view.LayoutInflater;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080041import android.view.ViewGroup;
42import android.view.WindowManager;
43import android.widget.FrameLayout;
44
Mady Mellorebdbbb92018-11-15 14:36:48 -080045import com.android.internal.annotations.VisibleForTesting;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080046import com.android.internal.statusbar.NotificationVisibility;
Ned Burns01e38212019-01-03 16:32:52 -050047import com.android.systemui.Dependency;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080048import com.android.systemui.R;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080049import com.android.systemui.statusbar.StatusBarStateController;
Ned Burns01e38212019-01-03 16:32:52 -050050import com.android.systemui.statusbar.notification.NotificationEntryListener;
51import com.android.systemui.statusbar.notification.NotificationEntryManager;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080052import com.android.systemui.statusbar.notification.NotificationInterruptionStateProvider;
Ned Burnsf81c4c42019-01-07 14:10:43 -050053import com.android.systemui.statusbar.notification.collection.NotificationEntry;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080054import com.android.systemui.statusbar.notification.row.NotificationInflater;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080055import com.android.systemui.statusbar.phone.StatusBarWindowController;
56
57import java.util.HashMap;
58import java.util.Map;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080059import java.util.Set;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080060
Jason Monk27d01a622018-12-10 15:57:09 -050061import javax.inject.Inject;
62import javax.inject.Singleton;
63
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080064/**
65 * Bubbles are a special type of content that can "float" on top of other apps or System UI.
66 * Bubbles can be expanded to show more content.
67 *
68 * The controller manages addition, removal, and visible state of bubbles on screen.
69 */
Jason Monk27d01a622018-12-10 15:57:09 -050070@Singleton
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080071public class BubbleController {
72 private static final int MAX_BUBBLES = 5; // TODO: actually enforce this
73
74 private static final String TAG = "BubbleController";
75
Mady Mellor5549dd22018-11-06 18:07:34 -080076 // Enables some subset of notifs to automatically become bubbles
Ned Burns01e38212019-01-03 16:32:52 -050077 private static final boolean DEBUG_ENABLE_AUTO_BUBBLE = false;
Mady Mellor5549dd22018-11-06 18:07:34 -080078
Mady Mellorceced172018-11-27 11:18:39 -080079 // Secure settings
80 private static final String ENABLE_AUTO_BUBBLE_MESSAGES = "experiment_autobubble_messaging";
81 private static final String ENABLE_AUTO_BUBBLE_ONGOING = "experiment_autobubble_ongoing";
82 private static final String ENABLE_AUTO_BUBBLE_ALL = "experiment_autobubble_all";
Mark Renouf89b1a4a2018-12-04 14:59:45 -050083 private static final String ENABLE_BUBBLE_ACTIVITY_VIEW = "experiment_bubble_activity_view";
84 private static final String ENABLE_BUBBLE_CONTENT_INTENT = "experiment_bubble_content_intent";
Mady Mellorceced172018-11-27 11:18:39 -080085
Ned Burns01e38212019-01-03 16:32:52 -050086 private final Context mContext;
87 private final NotificationEntryManager mNotificationEntryManager;
Mady Mellord1c78b262018-11-06 18:04:40 -080088 private BubbleStateChangeListener mStateChangeListener;
Mady Mellorcd9b1302018-11-06 18:08:04 -080089 private BubbleExpandListener mExpandListener;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080090 private LayoutInflater mInflater;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080091
Ned Burns01e38212019-01-03 16:32:52 -050092 private final Map<String, BubbleView> mBubbles = new HashMap<>();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080093 private BubbleStackView mStackView;
Ned Burns01e38212019-01-03 16:32:52 -050094 private final Point mDisplaySize;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -080095
96 // Bubbles get added to the status bar view
Ned Burns01e38212019-01-03 16:32:52 -050097 private final StatusBarWindowController mStatusBarWindowController;
Mady Mellor3f2efdb2018-11-21 11:30:45 -080098 private StatusBarStateListener mStatusBarStateListener;
99
100 private final NotificationInterruptionStateProvider mNotificationInterruptionStateProvider =
101 Dependency.get(NotificationInterruptionStateProvider.class);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800102
Mady Mellorb4991e62019-01-10 15:14:51 -0800103 private INotificationManager mNotificationManagerService;
104
Mady Mellord1c78b262018-11-06 18:04:40 -0800105 // Used for determining view rect for touch interaction
106 private Rect mTempRect = new Rect();
107
Mady Mellor5549dd22018-11-06 18:07:34 -0800108 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800109 * Listener to be notified when some states of the bubbles change.
110 */
111 public interface BubbleStateChangeListener {
112 /**
113 * Called when the stack has bubbles or no longer has bubbles.
114 */
115 void onHasBubblesChanged(boolean hasBubbles);
116 }
117
Mady Mellorcd9b1302018-11-06 18:08:04 -0800118 /**
119 * Listener to find out about stack expansion / collapse events.
120 */
121 public interface BubbleExpandListener {
122 /**
123 * Called when the expansion state of the bubble stack changes.
Mady Mellorcd9b1302018-11-06 18:08:04 -0800124 * @param isExpanding whether it's expanding or collapsing
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800125 * @param key the notification key associated with bubble being expanded
Mady Mellorcd9b1302018-11-06 18:08:04 -0800126 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800127 void onBubbleExpandChanged(boolean isExpanding, String key);
128 }
129
130 /**
131 * Listens for the current state of the status bar and updates the visibility state
132 * of bubbles as needed.
133 */
134 private class StatusBarStateListener implements StatusBarStateController.StateListener {
135 private int mState;
136 /**
137 * Returns the current status bar state.
138 */
139 public int getCurrentState() {
140 return mState;
141 }
142
143 @Override
144 public void onStateChanged(int newState) {
145 mState = newState;
146 updateVisibility();
147 }
Mady Mellorcd9b1302018-11-06 18:08:04 -0800148 }
149
Jason Monk27d01a622018-12-10 15:57:09 -0500150 @Inject
Jason Monk92d5c242018-12-21 14:37:34 -0500151 public BubbleController(Context context, StatusBarWindowController statusBarWindowController) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800152 mContext = context;
153 WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
154 mDisplaySize = new Point();
155 wm.getDefaultDisplay().getSize(mDisplaySize);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800156 mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800157
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800158 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class);
Ned Burns01e38212019-01-03 16:32:52 -0500159 mNotificationEntryManager.addNotificationEntryListener(mEntryListener);
Mady Mellorb4991e62019-01-10 15:14:51 -0800160
161 try {
162 mNotificationManagerService = INotificationManager.Stub.asInterface(
163 ServiceManager.getServiceOrThrow(Context.NOTIFICATION_SERVICE));
164 } catch (ServiceManager.ServiceNotFoundException e) {
165 e.printStackTrace();
166 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800167
168 mStatusBarWindowController = statusBarWindowController;
169 mStatusBarStateListener = new StatusBarStateListener();
170 Dependency.get(StatusBarStateController.class).addCallback(mStatusBarStateListener);
Mady Mellor5549dd22018-11-06 18:07:34 -0800171 }
172
173 /**
Mady Mellord1c78b262018-11-06 18:04:40 -0800174 * Set a listener to be notified when some states of the bubbles change.
175 */
176 public void setBubbleStateChangeListener(BubbleStateChangeListener listener) {
177 mStateChangeListener = listener;
178 }
179
180 /**
Mady Mellorcd9b1302018-11-06 18:08:04 -0800181 * Set a listener to be notified of bubble expand events.
182 */
183 public void setExpandListener(BubbleExpandListener listener) {
184 mExpandListener = listener;
185 if (mStackView != null) {
186 mStackView.setExpandListener(mExpandListener);
187 }
188 }
189
190 /**
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800191 * Whether or not there are bubbles present, regardless of them being visible on the
192 * screen (e.g. if on AOD).
193 */
194 public boolean hasBubbles() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800195 for (BubbleView bv : mBubbles.values()) {
196 if (!bv.getEntry().isBubbleDismissed()) {
197 return true;
198 }
199 }
200 return false;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800201 }
202
203 /**
204 * Whether the stack of bubbles is expanded or not.
205 */
206 public boolean isStackExpanded() {
207 return mStackView != null && mStackView.isExpanded();
208 }
209
210 /**
211 * Tell the stack of bubbles to collapse.
212 */
213 public void collapseStack() {
214 if (mStackView != null) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800215 mStackView.collapseStack();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800216 }
217 }
218
219 /**
220 * Tell the stack of bubbles to be dismissed, this will remove all of the bubbles in the stack.
221 */
Ned Burns01e38212019-01-03 16:32:52 -0500222 void dismissStack() {
Mady Mellord1c78b262018-11-06 18:04:40 -0800223 if (mStackView == null) {
224 return;
225 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800226 Set<String> keys = mBubbles.keySet();
227 for (String key: keys) {
228 mBubbles.get(key).getEntry().setBubbleDismissed(true);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800229 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800230 mStackView.stackDismissed();
231
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800232 updateVisibility();
Ned Burns01e38212019-01-03 16:32:52 -0500233 mNotificationEntryManager.updateNotifications();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800234 }
235
236 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800237 * Adds or updates a bubble associated with the provided notification entry.
238 *
239 * @param notif the notification associated with this bubble.
240 * @param updatePosition whether this update should promote the bubble to the top of the stack.
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800241 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800242 public void updateBubble(NotificationEntry notif, boolean updatePosition) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800243 if (mBubbles.containsKey(notif.key)) {
244 // It's an update
245 BubbleView bubble = mBubbles.get(notif.key);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800246 mStackView.updateBubble(bubble, notif, updatePosition);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800247 } else {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800248 if (mStackView == null) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800249 mStackView = new BubbleStackView(mContext);
Mady Mellord1c78b262018-11-06 18:04:40 -0800250 ViewGroup sbv = mStatusBarWindowController.getStatusBarView();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800251 // XXX: Bug when you expand the shade on top of expanded bubble, there is no scrim
252 // between bubble and the shade
253 int bubblePosition = sbv.indexOfChild(sbv.findViewById(R.id.scrim_behind)) + 1;
254 sbv.addView(mStackView, bubblePosition,
Joshua Tsujib1a796b2019-01-16 15:43:12 -0800255 new FrameLayout.LayoutParams(MATCH_PARENT, MATCH_PARENT));
Mady Mellorcd9b1302018-11-06 18:08:04 -0800256 if (mExpandListener != null) {
257 mStackView.setExpandListener(mExpandListener);
258 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800259 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800260 // It's new
261 BubbleView bubble = (BubbleView) mInflater.inflate(
262 R.layout.bubble_view, mStackView, false /* attachToRoot */);
263 bubble.setNotif(notif);
Mady Melloredd4ee12019-01-18 10:45:11 -0800264 PendingIntent bubbleIntent = getValidBubbleIntent(notif);
265 if (shouldUseActivityView(mContext) || bubbleIntent != null) {
266 bubble.setBubbleIntent(getValidBubbleIntent(notif));
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800267 }
268 mBubbles.put(bubble.getKey(), bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800269 mStackView.addBubble(bubble);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800270 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800271 updateVisibility();
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800272 }
273
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500274 @Nullable
Mady Melloredd4ee12019-01-18 10:45:11 -0800275 private PendingIntent getValidBubbleIntent(NotificationEntry notif) {
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500276 Notification notification = notif.notification.getNotification();
Mady Mellorc39b4ae2019-01-09 17:11:37 -0800277 if (canLaunchInActivityView(notification.getBubbleMetadata() != null
278 ? notification.getBubbleMetadata().getIntent() : null)) {
279 return notification.getBubbleMetadata().getIntent();
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500280 } else if (shouldUseContentIntent(mContext)
281 && canLaunchInActivityView(notification.contentIntent)) {
282 Log.d(TAG, "[addBubble " + notif.key
283 + "]: No appOverlayIntent, using contentIntent.");
284 return notification.contentIntent;
285 }
286 Log.d(TAG, "[addBubble " + notif.key + "]: No supported intent for ActivityView.");
287 return null;
288 }
289
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800290 /**
291 * Removes the bubble associated with the {@param uri}.
292 */
Ned Burns01e38212019-01-03 16:32:52 -0500293 void removeBubble(String key) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800294 BubbleView bv = mBubbles.remove(key);
Mady Mellord1c78b262018-11-06 18:04:40 -0800295 if (mStackView != null && bv != null) {
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800296 mStackView.removeBubble(bv);
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500297 bv.destroyActivityView(mStackView);
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800298 }
Ned Burns01e38212019-01-03 16:32:52 -0500299
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800300 NotificationEntry entry = bv != null ? bv.getEntry() : null;
Ned Burns01e38212019-01-03 16:32:52 -0500301 if (entry != null) {
302 entry.setBubbleDismissed(true);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800303 mNotificationEntryManager.updateNotifications();
Mady Mellor5549dd22018-11-06 18:07:34 -0800304 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800305 updateVisibility();
Mady Mellord1c78b262018-11-06 18:04:40 -0800306 }
307
Ned Burns01e38212019-01-03 16:32:52 -0500308 @SuppressWarnings("FieldCanBeLocal")
309 private final NotificationEntryListener mEntryListener = new NotificationEntryListener() {
310 @Override
Ned Burnsf81c4c42019-01-07 14:10:43 -0500311 public void onPendingEntryAdded(NotificationEntry entry) {
Mady Mellorb4991e62019-01-10 15:14:51 -0800312 if (shouldAutoBubble(mContext, entry) || shouldBubble(entry)) {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800313 // TODO: handle group summaries
314 // It's a new notif, it shows in the shade and as a bubble
Ned Burns01e38212019-01-03 16:32:52 -0500315 entry.setIsBubble(true);
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800316 entry.setShowInShadeWhenBubble(true);
317 }
318 }
319
320 @Override
321 public void onEntryInflated(NotificationEntry entry,
322 @NotificationInflater.InflationFlag int inflatedFlags) {
323 if (entry.isBubble() && mNotificationInterruptionStateProvider.shouldBubbleUp(entry)) {
324 updateBubble(entry, true /* updatePosition */);
325 }
326 }
327
328 @Override
329 public void onPreEntryUpdated(NotificationEntry entry) {
330 if (mNotificationInterruptionStateProvider.shouldBubbleUp(entry)
331 && alertAgain(entry, entry.notification.getNotification())) {
332 entry.setShowInShadeWhenBubble(true);
333 entry.setBubbleDismissed(false); // updates come back as bubbles even if dismissed
334 if (mBubbles.containsKey(entry.key)) {
335 mBubbles.get(entry.key).updateDotVisibility();
336 }
337 updateBubble(entry, true /* updatePosition */);
338 }
339 }
340
341 @Override
342 public void onEntryRemoved(NotificationEntry entry,
343 @Nullable NotificationVisibility visibility,
344 boolean removedByUser) {
345 entry.setShowInShadeWhenBubble(false);
346 if (mBubbles.containsKey(entry.key)) {
347 mBubbles.get(entry.key).updateDotVisibility();
348 }
349 if (!removedByUser) {
350 // This was a cancel so we should remove the bubble
351 removeBubble(entry.key);
Ned Burns01e38212019-01-03 16:32:52 -0500352 }
353 }
354 };
355
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800356 /**
357 * Lets any listeners know if bubble state has changed.
358 */
Mady Mellord1c78b262018-11-06 18:04:40 -0800359 private void updateBubblesShowing() {
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800360 if (mStackView == null) {
361 return;
Mady Mellord1c78b262018-11-06 18:04:40 -0800362 }
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800363
Mady Mellord1c78b262018-11-06 18:04:40 -0800364 boolean hadBubbles = mStatusBarWindowController.getBubblesShowing();
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800365 boolean hasBubblesShowing = hasBubbles() && mStackView.getVisibility() == VISIBLE;
Mady Mellord1c78b262018-11-06 18:04:40 -0800366 mStatusBarWindowController.setBubblesShowing(hasBubblesShowing);
Mady Mellord1c78b262018-11-06 18:04:40 -0800367 if (mStateChangeListener != null && hadBubbles != hasBubblesShowing) {
368 mStateChangeListener.onHasBubblesChanged(hasBubblesShowing);
369 }
Mady Mellor5549dd22018-11-06 18:07:34 -0800370 }
371
372 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800373 * Updates the visibility of the bubbles based on current state.
374 * Does not un-bubble, just hides or un-hides. Will notify any
375 * {@link BubbleStateChangeListener}s if visibility changes.
Mady Mellor5549dd22018-11-06 18:07:34 -0800376 */
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800377 public void updateVisibility() {
378 if (mStatusBarStateListener.getCurrentState() == SHADE && hasBubbles()) {
379 // Bubbles only appear in unlocked shade
380 mStackView.setVisibility(hasBubbles() ? VISIBLE : INVISIBLE);
381 } else if (mStackView != null) {
382 mStackView.setVisibility(INVISIBLE);
383 collapseStack();
Mady Mellor5549dd22018-11-06 18:07:34 -0800384 }
Mady Mellord1c78b262018-11-06 18:04:40 -0800385 updateBubblesShowing();
386 }
387
388 /**
389 * Rect indicating the touchable region for the bubble stack / expanded stack.
390 */
391 public Rect getTouchableRegion() {
392 if (mStackView == null || mStackView.getVisibility() != VISIBLE) {
393 return null;
394 }
395 mStackView.getBoundsOnScreen(mTempRect);
396 return mTempRect;
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800397 }
398
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500399 private boolean canLaunchInActivityView(PendingIntent intent) {
400 if (intent == null) {
401 return false;
402 }
403 ActivityInfo info =
404 intent.getIntent().resolveActivityInfo(mContext.getPackageManager(), 0);
405 return info != null
406 && ActivityInfo.isResizeableMode(info.resizeMode)
407 && (info.flags & ActivityInfo.FLAG_ALLOW_EMBEDDED) != 0;
408 }
409
Mady Mellorebdbbb92018-11-15 14:36:48 -0800410 @VisibleForTesting
Ned Burns01e38212019-01-03 16:32:52 -0500411 BubbleStackView getStackView() {
Mady Mellorebdbbb92018-11-15 14:36:48 -0800412 return mStackView;
413 }
414
Mady Mellor5549dd22018-11-06 18:07:34 -0800415 /**
Mady Mellorb4991e62019-01-10 15:14:51 -0800416 * Whether the notification has been developer configured to bubble and is allowed by the user.
417 */
Mady Mellorc18ba962019-01-29 11:11:56 -0800418 @VisibleForTesting
419 protected boolean shouldBubble(NotificationEntry entry) {
Mady Mellorb4991e62019-01-10 15:14:51 -0800420 StatusBarNotification n = entry.notification;
421 boolean canAppOverlay = false;
422 try {
Mady Mellorc39b4ae2019-01-09 17:11:37 -0800423 canAppOverlay = mNotificationManagerService.areBubblesAllowedForPackage(
Mady Mellorb4991e62019-01-10 15:14:51 -0800424 n.getPackageName(), n.getUid());
425 } catch (RemoteException e) {
426 Log.w(TAG, "Error calling NoMan to determine if app can overlay", e);
427 }
428
Mady Mellorc18ba962019-01-29 11:11:56 -0800429 NotificationChannel channel = mNotificationEntryManager.getNotificationData().getChannel(
430 entry.key);
431 boolean canChannelOverlay = channel != null && channel.canBubble();
Mady Mellorc39b4ae2019-01-09 17:11:37 -0800432 boolean hasOverlayIntent = n.getNotification().getBubbleMetadata() != null
433 && n.getNotification().getBubbleMetadata().getIntent() != null;
Mady Mellor9bad2242019-01-28 11:21:51 -0800434 return DEBUG_ENABLE_AUTO_BUBBLE && hasOverlayIntent && canChannelOverlay && canAppOverlay;
Mady Mellorb4991e62019-01-10 15:14:51 -0800435 }
436
437 /**
Mady Mellor3f2efdb2018-11-21 11:30:45 -0800438 * Whether the notification should bubble or not. Gated by debug flag.
439 * <p>
440 * If a notification has been set to bubble via proper bubble APIs or if it is an important
441 * message-like notification.
442 * </p>
Mady Mellor5549dd22018-11-06 18:07:34 -0800443 */
Mady Mellor9bad2242019-01-28 11:21:51 -0800444 @VisibleForTesting
445 protected boolean shouldAutoBubble(Context context, NotificationEntry entry) {
Mady Mellorceced172018-11-27 11:18:39 -0800446 if (entry.isBubbleDismissed()) {
Mady Mellor5549dd22018-11-06 18:07:34 -0800447 return false;
448 }
Mady Mellorb4991e62019-01-10 15:14:51 -0800449 StatusBarNotification n = entry.notification;
Mady Mellorceced172018-11-27 11:18:39 -0800450
451 boolean autoBubbleMessages = shouldAutoBubbleMessages(context) || DEBUG_ENABLE_AUTO_BUBBLE;
452 boolean autoBubbleOngoing = shouldAutoBubbleOngoing(context) || DEBUG_ENABLE_AUTO_BUBBLE;
453 boolean autoBubbleAll = shouldAutoBubbleAll(context) || DEBUG_ENABLE_AUTO_BUBBLE;
454
Mady Mellor5549dd22018-11-06 18:07:34 -0800455 boolean hasRemoteInput = false;
456 if (n.getNotification().actions != null) {
457 for (Notification.Action action : n.getNotification().actions) {
458 if (action.getRemoteInputs() != null) {
459 hasRemoteInput = true;
460 break;
461 }
462 }
463 }
Mady Mellor711f9562018-12-05 14:53:46 -0800464 boolean isCall = Notification.CATEGORY_CALL.equals(n.getNotification().category)
465 && n.isOngoing();
466 boolean isMusic = n.getNotification().hasMediaSession();
467 boolean isImportantOngoing = isMusic || isCall;
Mady Mellorceced172018-11-27 11:18:39 -0800468
Mady Mellor5549dd22018-11-06 18:07:34 -0800469 Class<? extends Notification.Style> style = n.getNotification().getNotificationStyle();
Mady Mellore3175372018-12-04 17:05:11 -0800470 boolean isMessageType = Notification.CATEGORY_MESSAGE.equals(n.getNotification().category);
471 boolean isMessageStyle = Notification.MessagingStyle.class.equals(style);
Mady Mellor9bad2242019-01-28 11:21:51 -0800472 boolean shouldAutoBubble =
473 (((isMessageType && hasRemoteInput) || isMessageStyle) && autoBubbleMessages)
Mady Mellor711f9562018-12-05 14:53:46 -0800474 || (isImportantOngoing && autoBubbleOngoing)
Mady Mellorceced172018-11-27 11:18:39 -0800475 || autoBubbleAll;
Mady Mellor9bad2242019-01-28 11:21:51 -0800476 return DEBUG_ENABLE_AUTO_BUBBLE && shouldAutoBubble;
Mady Mellorceced172018-11-27 11:18:39 -0800477 }
478
479 private static boolean shouldAutoBubbleMessages(Context context) {
480 return Settings.Secure.getInt(context.getContentResolver(),
481 ENABLE_AUTO_BUBBLE_MESSAGES, 0) != 0;
482 }
483
484 private static boolean shouldAutoBubbleOngoing(Context context) {
485 return Settings.Secure.getInt(context.getContentResolver(),
486 ENABLE_AUTO_BUBBLE_ONGOING, 0) != 0;
487 }
488
489 private static boolean shouldAutoBubbleAll(Context context) {
490 return Settings.Secure.getInt(context.getContentResolver(),
491 ENABLE_AUTO_BUBBLE_ALL, 0) != 0;
Mady Mellor5549dd22018-11-06 18:07:34 -0800492 }
Mark Renouf89b1a4a2018-12-04 14:59:45 -0500493
494 private static boolean shouldUseActivityView(Context context) {
495 return Settings.Secure.getInt(context.getContentResolver(),
496 ENABLE_BUBBLE_ACTIVITY_VIEW, 0) != 0;
497 }
498
499 private static boolean shouldUseContentIntent(Context context) {
500 return Settings.Secure.getInt(context.getContentResolver(),
501 ENABLE_BUBBLE_CONTENT_INTENT, 0) != 0;
502 }
Mady Mellorc3d6f7d2018-11-07 09:36:56 -0800503}