Merge "Revert "decouple Bubble from NotificationEntry"" into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-06-15 23:34:01 +00:00
committed by Android (Google) Code Review
19 changed files with 288 additions and 324 deletions

View File

@@ -15,6 +15,7 @@
*/ */
package com.android.systemui.bubbles; package com.android.systemui.bubbles;
import static android.app.Notification.FLAG_BUBBLE;
import static android.os.AsyncTask.Status.FINISHED; import static android.os.AsyncTask.Status.FINISHED;
import static android.view.Display.INVALID_DISPLAY; import static android.view.Display.INVALID_DISPLAY;
@@ -28,19 +29,21 @@ import android.app.PendingIntent;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.content.pm.ApplicationInfo; import android.content.pm.ApplicationInfo;
import android.content.pm.LauncherApps;
import android.content.pm.PackageManager; import android.content.pm.PackageManager;
import android.content.pm.ShortcutInfo; import android.content.pm.ShortcutInfo;
import android.content.res.Resources; import android.content.res.Resources;
import android.graphics.Bitmap; import android.graphics.Bitmap;
import android.graphics.Path; import android.graphics.Path;
import android.graphics.Rect;
import android.graphics.drawable.Drawable; import android.graphics.drawable.Drawable;
import android.graphics.drawable.Icon; import android.os.Bundle;
import android.os.UserHandle; import android.os.UserHandle;
import android.provider.Settings; import android.provider.Settings;
import android.service.notification.StatusBarNotification;
import android.util.Log; import android.util.Log;
import com.android.internal.annotations.VisibleForTesting; import com.android.internal.annotations.VisibleForTesting;
import com.android.internal.logging.InstanceId;
import com.android.systemui.shared.system.SysUiStatsLog; import com.android.systemui.shared.system.SysUiStatsLog;
import com.android.systemui.statusbar.notification.collection.NotificationEntry; import com.android.systemui.statusbar.notification.collection.NotificationEntry;
@@ -54,12 +57,17 @@ import java.util.Objects;
class Bubble implements BubbleViewProvider { class Bubble implements BubbleViewProvider {
private static final String TAG = "Bubble"; private static final String TAG = "Bubble";
/**
* NotificationEntry associated with the bubble. A null value implies this bubble is loaded
* from disk.
*/
@Nullable
private NotificationEntry mEntry;
private final String mKey; private final String mKey;
private long mLastUpdated; private long mLastUpdated;
private long mLastAccessed; private long mLastAccessed;
@Nullable
private BubbleController.NotificationSuppressionChangedListener mSuppressionListener; private BubbleController.NotificationSuppressionChangedListener mSuppressionListener;
/** Whether the bubble should show a dot for the notification indicating updated content. */ /** Whether the bubble should show a dot for the notification indicating updated content. */
@@ -67,6 +75,8 @@ class Bubble implements BubbleViewProvider {
/** Whether flyout text should be suppressed, regardless of any other flags or state. */ /** Whether flyout text should be suppressed, regardless of any other flags or state. */
private boolean mSuppressFlyout; private boolean mSuppressFlyout;
/** Whether this bubble should auto expand regardless of the normal flag, used for overflow. */
private boolean mShouldAutoExpand;
// Items that are typically loaded later // Items that are typically loaded later
private String mAppName; private String mAppName;
@@ -82,7 +92,6 @@ class Bubble implements BubbleViewProvider {
* Presentational info about the flyout. * Presentational info about the flyout.
*/ */
public static class FlyoutMessage { public static class FlyoutMessage {
@Nullable public Icon senderIcon;
@Nullable public Drawable senderAvatar; @Nullable public Drawable senderAvatar;
@Nullable public CharSequence senderName; @Nullable public CharSequence senderName;
@Nullable public CharSequence message; @Nullable public CharSequence message;
@@ -100,39 +109,16 @@ class Bubble implements BubbleViewProvider {
private UserHandle mUser; private UserHandle mUser;
@NonNull @NonNull
private String mPackageName; private String mPackageName;
@Nullable
private String mTitle;
@Nullable
private Icon mIcon;
private boolean mIsBubble;
private boolean mIsVisuallyInterruptive;
private boolean mIsClearable;
private boolean mShouldSuppressNotificationDot;
private boolean mShouldSuppressNotificationList;
private boolean mShouldSuppressPeek;
private int mDesiredHeight; private int mDesiredHeight;
@DimenRes @DimenRes
private int mDesiredHeightResId; private int mDesiredHeightResId;
/** for logging **/
@Nullable
private InstanceId mInstanceId;
@Nullable
private String mChannelId;
private int mNotificationId;
private int mAppUid = -1;
@Nullable
private PendingIntent mIntent;
@Nullable
private PendingIntent mDeleteIntent;
/** /**
* Create a bubble with limited information based on given {@link ShortcutInfo}. * Create a bubble with limited information based on given {@link ShortcutInfo}.
* Note: Currently this is only being used when the bubble is persisted to disk. * Note: Currently this is only being used when the bubble is persisted to disk.
*/ */
Bubble(@NonNull final String key, @NonNull final ShortcutInfo shortcutInfo, Bubble(@NonNull final String key, @NonNull final ShortcutInfo shortcutInfo,
final int desiredHeight, final int desiredHeightResId, @Nullable final String title) { final int desiredHeight, final int desiredHeightResId) {
Objects.requireNonNull(key); Objects.requireNonNull(key);
Objects.requireNonNull(shortcutInfo); Objects.requireNonNull(shortcutInfo);
mShortcutInfo = shortcutInfo; mShortcutInfo = shortcutInfo;
@@ -140,10 +126,8 @@ class Bubble implements BubbleViewProvider {
mFlags = 0; mFlags = 0;
mUser = shortcutInfo.getUserHandle(); mUser = shortcutInfo.getUserHandle();
mPackageName = shortcutInfo.getPackage(); mPackageName = shortcutInfo.getPackage();
mIcon = shortcutInfo.getIcon();
mDesiredHeight = desiredHeight; mDesiredHeight = desiredHeight;
mDesiredHeightResId = desiredHeightResId; mDesiredHeightResId = desiredHeightResId;
mTitle = title;
} }
/** Used in tests when no UI is required. */ /** Used in tests when no UI is required. */
@@ -161,6 +145,12 @@ class Bubble implements BubbleViewProvider {
return mKey; return mKey;
} }
@Nullable
public NotificationEntry getEntry() {
return mEntry;
}
@NonNull
public UserHandle getUser() { public UserHandle getUser() {
return mUser; return mUser;
} }
@@ -213,7 +203,14 @@ class Bubble implements BubbleViewProvider {
@Nullable @Nullable
public String getTitle() { public String getTitle() {
return mTitle; final CharSequence titleCharSeq;
if (mEntry == null) {
titleCharSeq = null;
} else {
titleCharSeq = mEntry.getSbn().getNotification().extras.getCharSequence(
Notification.EXTRA_TITLE);
}
return titleCharSeq != null ? titleCharSeq.toString() : null;
} }
/** /**
@@ -334,44 +331,17 @@ class Bubble implements BubbleViewProvider {
void setEntry(@NonNull final NotificationEntry entry) { void setEntry(@NonNull final NotificationEntry entry) {
Objects.requireNonNull(entry); Objects.requireNonNull(entry);
Objects.requireNonNull(entry.getSbn()); Objects.requireNonNull(entry.getSbn());
mEntry = entry;
mLastUpdated = entry.getSbn().getPostTime(); mLastUpdated = entry.getSbn().getPostTime();
mIsBubble = entry.getSbn().getNotification().isBubbleNotification(); mFlags = entry.getSbn().getNotification().flags;
mPackageName = entry.getSbn().getPackageName(); mPackageName = entry.getSbn().getPackageName();
mUser = entry.getSbn().getUser(); mUser = entry.getSbn().getUser();
mTitle = getTitle(entry);
mIsClearable = entry.isClearable();
mShouldSuppressNotificationDot = entry.shouldSuppressNotificationDot();
mShouldSuppressNotificationList = entry.shouldSuppressNotificationList();
mShouldSuppressPeek = entry.shouldSuppressPeek();
mChannelId = entry.getSbn().getNotification().getChannelId();
mNotificationId = entry.getSbn().getId();
mAppUid = entry.getSbn().getUid();
mInstanceId = entry.getSbn().getInstanceId();
mFlyoutMessage = BubbleViewInfoTask.extractFlyoutMessage(entry);
if (entry.getRanking() != null) {
mShortcutInfo = entry.getRanking().getShortcutInfo() != null
? entry.getRanking().getShortcutInfo() : mShortcutInfo;
mIsVisuallyInterruptive = entry.getRanking().visuallyInterruptive();
}
if (entry.getBubbleMetadata() != null) { if (entry.getBubbleMetadata() != null) {
mFlags = entry.getBubbleMetadata().getFlags();
mDesiredHeight = entry.getBubbleMetadata().getDesiredHeight(); mDesiredHeight = entry.getBubbleMetadata().getDesiredHeight();
mDesiredHeightResId = entry.getBubbleMetadata().getDesiredHeightResId(); mDesiredHeightResId = entry.getBubbleMetadata().getDesiredHeightResId();
mIcon = entry.getBubbleMetadata().getIcon();
mIntent = entry.getBubbleMetadata().getIntent();
mDeleteIntent = entry.getBubbleMetadata().getDeleteIntent();
} }
} }
@Nullable
Icon getIcon() {
return mIcon;
}
boolean isVisuallyInterruptive() {
return mIsVisuallyInterruptive;
}
/** /**
* @return the last time this bubble was updated or accessed, whichever is most recent. * @return the last time this bubble was updated or accessed, whichever is most recent.
*/ */
@@ -394,19 +364,6 @@ class Bubble implements BubbleViewProvider {
return mExpandedView != null ? mExpandedView.getVirtualDisplayId() : INVALID_DISPLAY; return mExpandedView != null ? mExpandedView.getVirtualDisplayId() : INVALID_DISPLAY;
} }
public InstanceId getInstanceId() {
return mInstanceId;
}
@Nullable
public String getChannelId() {
return mChannelId;
}
public int getNotificationId() {
return mNotificationId;
}
/** /**
* Should be invoked whenever a Bubble is accessed (selected while expanded). * Should be invoked whenever a Bubble is accessed (selected while expanded).
*/ */
@@ -427,19 +384,24 @@ class Bubble implements BubbleViewProvider {
* Whether this notification should be shown in the shade. * Whether this notification should be shown in the shade.
*/ */
boolean showInShade() { boolean showInShade() {
return !shouldSuppressNotification() || !mIsClearable; if (mEntry == null) return false;
return !shouldSuppressNotification() || !mEntry.isClearable();
} }
/** /**
* Sets whether this notification should be suppressed in the shade. * Sets whether this notification should be suppressed in the shade.
*/ */
void setSuppressNotification(boolean suppressNotification) { void setSuppressNotification(boolean suppressNotification) {
if (mEntry == null) return;
boolean prevShowInShade = showInShade(); boolean prevShowInShade = showInShade();
Notification.BubbleMetadata data = mEntry.getBubbleMetadata();
int flags = data.getFlags();
if (suppressNotification) { if (suppressNotification) {
mFlags |= Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION; flags |= Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION;
} else { } else {
mFlags &= ~Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION; flags &= ~Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION;
} }
data.setFlags(flags);
if (showInShade() != prevShowInShade && mSuppressionListener != null) { if (showInShade() != prevShowInShade && mSuppressionListener != null) {
mSuppressionListener.onBubbleNotificationSuppressionChange(this); mSuppressionListener.onBubbleNotificationSuppressionChange(this);
@@ -462,8 +424,9 @@ class Bubble implements BubbleViewProvider {
*/ */
@Override @Override
public boolean showDot() { public boolean showDot() {
if (mEntry == null) return false;
return mShowBubbleUpdateDot return mShowBubbleUpdateDot
&& !mShouldSuppressNotificationDot && !mEntry.shouldSuppressNotificationDot()
&& !shouldSuppressNotification(); && !shouldSuppressNotification();
} }
@@ -471,9 +434,10 @@ class Bubble implements BubbleViewProvider {
* Whether the flyout for the bubble should be shown. * Whether the flyout for the bubble should be shown.
*/ */
boolean showFlyout() { boolean showFlyout() {
return !mSuppressFlyout && !mShouldSuppressPeek if (mEntry == null) return false;
return !mSuppressFlyout && !mEntry.shouldSuppressPeek()
&& !shouldSuppressNotification() && !shouldSuppressNotification()
&& !mShouldSuppressNotificationList; && !mEntry.shouldSuppressNotificationList();
} }
/** /**
@@ -516,14 +480,25 @@ class Bubble implements BubbleViewProvider {
} }
} }
@Nullable /**
PendingIntent getBubbleIntent() { * Whether shortcut information should be used to populate the bubble.
return mIntent; * <p>
* To populate the activity use {@link LauncherApps#startShortcut(ShortcutInfo, Rect, Bundle)}.
* To populate the icon use {@link LauncherApps#getShortcutIconDrawable(ShortcutInfo, int)}.
*/
boolean usingShortcutInfo() {
return mEntry != null && mEntry.getBubbleMetadata().getShortcutId() != null
|| mShortcutInfo != null;
} }
@Nullable @Nullable
PendingIntent getDeleteIntent() { PendingIntent getBubbleIntent() {
return mDeleteIntent; if (mEntry == null) return null;
Notification.BubbleMetadata data = mEntry.getBubbleMetadata();
if (data != null) {
return data.getIntent();
}
return null;
} }
Intent getSettingsIntent(final Context context) { Intent getSettingsIntent(final Context context) {
@@ -539,12 +514,8 @@ class Bubble implements BubbleViewProvider {
return intent; return intent;
} }
public int getAppUid() {
return mAppUid;
}
private int getUid(final Context context) { private int getUid(final Context context) {
if (mAppUid != -1) return mAppUid; if (mEntry != null) return mEntry.getSbn().getUid();
final PackageManager pm = context.getPackageManager(); final PackageManager pm = context.getPackageManager();
if (pm == null) return -1; if (pm == null) return -1;
try { try {
@@ -577,27 +548,24 @@ class Bubble implements BubbleViewProvider {
} }
private boolean shouldSuppressNotification() { private boolean shouldSuppressNotification() {
return isEnabled(Notification.BubbleMetadata.FLAG_SUPPRESS_NOTIFICATION); if (mEntry == null) return true;
return mEntry.getBubbleMetadata() != null
&& mEntry.getBubbleMetadata().isNotificationSuppressed();
} }
public boolean shouldAutoExpand() { boolean shouldAutoExpand() {
return isEnabled(Notification.BubbleMetadata.FLAG_AUTO_EXPAND_BUBBLE); if (mEntry == null) return mShouldAutoExpand;
Notification.BubbleMetadata metadata = mEntry.getBubbleMetadata();
return (metadata != null && metadata.getAutoExpandBubble()) || mShouldAutoExpand;
} }
void setShouldAutoExpand(boolean shouldAutoExpand) { void setShouldAutoExpand(boolean shouldAutoExpand) {
if (shouldAutoExpand) { mShouldAutoExpand = shouldAutoExpand;
enable(Notification.BubbleMetadata.FLAG_AUTO_EXPAND_BUBBLE);
} else {
disable(Notification.BubbleMetadata.FLAG_AUTO_EXPAND_BUBBLE);
}
}
public void setIsBubble(final boolean isBubble) {
mIsBubble = isBubble;
} }
public boolean isBubble() { public boolean isBubble() {
return mIsBubble; if (mEntry == null) return (mFlags & FLAG_BUBBLE) != 0;
return (mEntry.getSbn().getNotification().flags & FLAG_BUBBLE) != 0;
} }
public void enable(int option) { public void enable(int option) {
@@ -608,10 +576,6 @@ class Bubble implements BubbleViewProvider {
mFlags &= ~option; mFlags &= ~option;
} }
public boolean isEnabled(int option) {
return (mFlags & option) != 0;
}
@Override @Override
public String toString() { public String toString() {
return "Bubble{" + mKey + '}'; return "Bubble{" + mKey + '}';
@@ -646,24 +610,34 @@ class Bubble implements BubbleViewProvider {
@Override @Override
public void logUIEvent(int bubbleCount, int action, float normalX, float normalY, int index) { public void logUIEvent(int bubbleCount, int action, float normalX, float normalY, int index) {
if (this.getEntry() == null
|| this.getEntry().getSbn() == null) {
SysUiStatsLog.write(SysUiStatsLog.BUBBLE_UI_CHANGED, SysUiStatsLog.write(SysUiStatsLog.BUBBLE_UI_CHANGED,
mPackageName, null /* package name */,
mChannelId, null /* notification channel */,
mNotificationId, 0 /* notification ID */,
0 /* bubble position */,
bubbleCount,
action,
normalX,
normalY,
false /* unread bubble */,
false /* on-going bubble */,
false /* isAppForeground (unused) */);
} else {
StatusBarNotification notification = this.getEntry().getSbn();
SysUiStatsLog.write(SysUiStatsLog.BUBBLE_UI_CHANGED,
notification.getPackageName(),
notification.getNotification().getChannelId(),
notification.getId(),
index, index,
bubbleCount, bubbleCount,
action, action,
normalX, normalX,
normalY, normalY,
showInShade(), this.showInShade(),
false /* isOngoing (unused) */, false /* isOngoing (unused) */,
false /* isAppForeground (unused) */); false /* isAppForeground (unused) */);
} }
@Nullable
private static String getTitle(@NonNull final NotificationEntry e) {
final CharSequence titleCharSeq = e.getSbn().getNotification().extras.getCharSequence(
Notification.EXTRA_TITLE);
return titleCharSeq == null ? null : titleCharSeq.toString();
} }
} }

View File

@@ -505,7 +505,8 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
addNotifCallback(new NotifCallback() { addNotifCallback(new NotifCallback() {
@Override @Override
public void removeNotification(NotificationEntry entry, int reason) { public void removeNotification(NotificationEntry entry, int reason) {
mNotificationEntryManager.performRemoveNotification(entry.getSbn(), reason); mNotificationEntryManager.performRemoveNotification(entry.getSbn(),
reason);
} }
@Override @Override
@@ -636,13 +637,8 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
mStackView.setExpandListener(mExpandListener); mStackView.setExpandListener(mExpandListener);
} }
mStackView.setUnbubbleConversationCallback(key -> { mStackView.setUnbubbleConversationCallback(notificationEntry ->
final NotificationEntry entry = onUserChangedBubble(notificationEntry, false /* shouldBubble */));
mNotificationEntryManager.getPendingOrActiveNotif(key);
if (entry != null) {
onUserChangedBubble(entry, false /* shouldBubble */);
}
});
} }
addToWindowManagerMaybe(); addToWindowManagerMaybe();
@@ -1028,7 +1024,10 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
* @param entry the notification to change bubble state for. * @param entry the notification to change bubble state for.
* @param shouldBubble whether the notification should show as a bubble or not. * @param shouldBubble whether the notification should show as a bubble or not.
*/ */
public void onUserChangedBubble(@NonNull final NotificationEntry entry, boolean shouldBubble) { public void onUserChangedBubble(@Nullable final NotificationEntry entry, boolean shouldBubble) {
if (entry == null) {
return;
}
NotificationChannel channel = entry.getChannel(); NotificationChannel channel = entry.getChannel();
final String appPkg = entry.getSbn().getPackageName(); final String appPkg = entry.getSbn().getPackageName();
final int appUid = entry.getSbn().getUid(); final int appUid = entry.getSbn().getUid();
@@ -1104,8 +1103,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
mBubbleData.removeSuppressedSummary(groupKey); mBubbleData.removeSuppressedSummary(groupKey);
// Remove any associated bubble children with the summary // Remove any associated bubble children with the summary
final List<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup( final List<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
groupKey, mNotificationEntryManager);
for (int i = 0; i < bubbleChildren.size(); i++) { for (int i = 0; i < bubbleChildren.size(); i++) {
removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED); removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED);
} }
@@ -1163,18 +1161,21 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
private void setIsBubble(@NonNull final Bubble b, final boolean isBubble) { private void setIsBubble(@NonNull final Bubble b, final boolean isBubble) {
Objects.requireNonNull(b); Objects.requireNonNull(b);
b.setIsBubble(isBubble); if (isBubble) {
final NotificationEntry entry = mNotificationEntryManager b.enable(FLAG_BUBBLE);
.getPendingOrActiveNotif(b.getKey()); } else {
if (entry != null) { b.disable(FLAG_BUBBLE);
}
if (b.getEntry() != null) {
// Updating the entry to be a bubble will trigger our normal update flow // Updating the entry to be a bubble will trigger our normal update flow
setIsBubble(entry, isBubble, b.shouldAutoExpand()); setIsBubble(b.getEntry(), isBubble, b.shouldAutoExpand());
} else if (isBubble) { } else if (isBubble) {
// If bubble doesn't exist, it's a persisted bubble so we need to add it to the // If we have no entry to update, it's a persisted bubble so
// stack ourselves // we need to add it to the stack ourselves
Bubble bubble = mBubbleData.getOrCreateBubble(null, b /* persistedBubble */); Bubble bubble = mBubbleData.getOrCreateBubble(null, b /* persistedBubble */);
inflateAndAdd(bubble, bubble.shouldAutoExpand() /* suppressFlyout */, inflateAndAdd(bubble, bubble.shouldAutoExpand() /* suppressFlyout */,
!bubble.shouldAutoExpand() /* showInShade */); !bubble.shouldAutoExpand() /* showInShade */);
} }
} }
@@ -1213,8 +1214,6 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
if (reason == DISMISS_NOTIF_CANCEL) { if (reason == DISMISS_NOTIF_CANCEL) {
bubblesToBeRemovedFromRepository.add(bubble); bubblesToBeRemovedFromRepository.add(bubble);
} }
final NotificationEntry entry = mNotificationEntryManager.getPendingOrActiveNotif(
bubble.getKey());
if (!mBubbleData.hasBubbleInStackWithKey(bubble.getKey())) { if (!mBubbleData.hasBubbleInStackWithKey(bubble.getKey())) {
if (!mBubbleData.hasOverflowBubbleWithKey(bubble.getKey()) if (!mBubbleData.hasOverflowBubbleWithKey(bubble.getKey())
&& (!bubble.showInShade() && (!bubble.showInShade()
@@ -1223,27 +1222,26 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
// The bubble is now gone & the notification is hidden from the shade, so // The bubble is now gone & the notification is hidden from the shade, so
// time to actually remove it // time to actually remove it
for (NotifCallback cb : mCallbacks) { for (NotifCallback cb : mCallbacks) {
if (entry != null) { if (bubble.getEntry() != null) {
cb.removeNotification(entry, REASON_CANCEL); cb.removeNotification(bubble.getEntry(), REASON_CANCEL);
} }
} }
} else { } else {
if (bubble.isBubble()) { if (bubble.isBubble()) {
setIsBubble(bubble, false /* isBubble */); setIsBubble(bubble, false /* isBubble */);
} }
if (entry != null && entry.getRow() != null) { if (bubble.getEntry() != null && bubble.getEntry().getRow() != null) {
entry.getRow().updateBubbleButton(); bubble.getEntry().getRow().updateBubbleButton();
} }
} }
} }
if (entry != null) { if (bubble.getEntry() != null) {
final String groupKey = entry.getSbn().getGroupKey(); final String groupKey = bubble.getEntry().getSbn().getGroupKey();
if (mBubbleData.getBubblesInGroup( if (mBubbleData.getBubblesInGroup(groupKey).isEmpty()) {
groupKey, mNotificationEntryManager).isEmpty()) {
// Time to potentially remove the summary // Time to potentially remove the summary
for (NotifCallback cb : mCallbacks) { for (NotifCallback cb : mCallbacks) {
cb.maybeCancelSummary(entry); cb.maybeCancelSummary(bubble.getEntry());
} }
} }
} }
@@ -1268,12 +1266,9 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
if (update.selectionChanged && mStackView != null) { if (update.selectionChanged && mStackView != null) {
mStackView.setSelectedBubble(update.selectedBubble); mStackView.setSelectedBubble(update.selectedBubble);
if (update.selectedBubble != null) { if (update.selectedBubble != null && update.selectedBubble.getEntry() != null) {
final NotificationEntry entry = mNotificationEntryManager mNotificationGroupManager.updateSuppression(
.getPendingOrActiveNotif(update.selectedBubble.getKey()); update.selectedBubble.getEntry());
if (entry != null) {
mNotificationGroupManager.updateSuppression(entry);
}
} }
} }
@@ -1346,8 +1341,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
} }
String groupKey = entry.getSbn().getGroupKey(); String groupKey = entry.getSbn().getGroupKey();
ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup( ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
groupKey, mNotificationEntryManager);
boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey) boolean isSuppressedSummary = (mBubbleData.isSummarySuppressed(groupKey)
&& mBubbleData.getSummaryKey(groupKey).equals(entry.getKey())); && mBubbleData.getSummaryKey(groupKey).equals(entry.getKey()));
boolean isSummary = entry.getSbn().getNotification().isGroupSummary(); boolean isSummary = entry.getSbn().getNotification().isGroupSummary();
@@ -1367,15 +1361,9 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
// As far as group manager is concerned, once a child is no longer shown // As far as group manager is concerned, once a child is no longer shown
// in the shade, it is essentially removed. // in the shade, it is essentially removed.
Bubble bubbleChild = mBubbleData.getAnyBubbleWithkey(child.getKey()); Bubble bubbleChild = mBubbleData.getAnyBubbleWithkey(child.getKey());
if (bubbleChild != null) { mNotificationGroupManager.onEntryRemoved(bubbleChild.getEntry());
final NotificationEntry entry = mNotificationEntryManager
.getPendingOrActiveNotif(bubbleChild.getKey());
if (entry != null) {
mNotificationGroupManager.onEntryRemoved(entry);
}
bubbleChild.setSuppressNotification(true); bubbleChild.setSuppressNotification(true);
bubbleChild.setShowDot(false /* show */); bubbleChild.setShowDot(false /* show */);
}
} else { } else {
// non-bubbled children can be removed // non-bubbled children can be removed
for (NotifCallback cb : mCallbacks) { for (NotifCallback cb : mCallbacks) {

View File

@@ -22,6 +22,7 @@ import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_BUBBLES;
import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_WITH_CLASS_NAME; import static com.android.systemui.bubbles.BubbleDebugConfig.TAG_WITH_CLASS_NAME;
import android.annotation.NonNull; import android.annotation.NonNull;
import android.app.Notification;
import android.app.PendingIntent; import android.app.PendingIntent;
import android.content.Context; import android.content.Context;
import android.util.Log; import android.util.Log;
@@ -33,7 +34,6 @@ import androidx.annotation.Nullable;
import com.android.internal.annotations.VisibleForTesting; import com.android.internal.annotations.VisibleForTesting;
import com.android.systemui.R; import com.android.systemui.R;
import com.android.systemui.bubbles.BubbleController.DismissReason; import com.android.systemui.bubbles.BubbleController.DismissReason;
import com.android.systemui.statusbar.notification.NotificationEntryManager;
import com.android.systemui.statusbar.notification.collection.NotificationEntry; import com.android.systemui.statusbar.notification.collection.NotificationEntry;
import java.io.FileDescriptor; import java.io.FileDescriptor;
@@ -256,7 +256,8 @@ public class BubbleData {
} }
mPendingBubbles.remove(bubble.getKey()); // No longer pending once we're here mPendingBubbles.remove(bubble.getKey()); // No longer pending once we're here
Bubble prevBubble = getBubbleInStackWithKey(bubble.getKey()); Bubble prevBubble = getBubbleInStackWithKey(bubble.getKey());
suppressFlyout |= !bubble.isVisuallyInterruptive(); suppressFlyout |= bubble.getEntry() == null
|| !bubble.getEntry().getRanking().visuallyInterruptive();
if (prevBubble == null) { if (prevBubble == null) {
// Create a new bubble // Create a new bubble
@@ -334,15 +335,13 @@ public class BubbleData {
* Retrieves any bubbles that are part of the notification group represented by the provided * Retrieves any bubbles that are part of the notification group represented by the provided
* group key. * group key.
*/ */
ArrayList<Bubble> getBubblesInGroup(@Nullable String groupKey, @NonNull ArrayList<Bubble> getBubblesInGroup(@Nullable String groupKey) {
NotificationEntryManager nem) {
ArrayList<Bubble> bubbleChildren = new ArrayList<>(); ArrayList<Bubble> bubbleChildren = new ArrayList<>();
if (groupKey == null) { if (groupKey == null) {
return bubbleChildren; return bubbleChildren;
} }
for (Bubble b : mBubbles) { for (Bubble b : mBubbles) {
final NotificationEntry entry = nem.getPendingOrActiveNotif(b.getKey()); if (b.getEntry() != null && groupKey.equals(b.getEntry().getSbn().getGroupKey())) {
if (entry != null && groupKey.equals(entry.getSbn().getGroupKey())) {
bubbleChildren.add(b); bubbleChildren.add(b);
} }
} }
@@ -440,7 +439,9 @@ public class BubbleData {
Bubble newSelected = mBubbles.get(newIndex); Bubble newSelected = mBubbles.get(newIndex);
setSelectedBubbleInternal(newSelected); setSelectedBubbleInternal(newSelected);
} }
maybeSendDeleteIntent(reason, bubbleToRemove); if (bubbleToRemove.getEntry() != null) {
maybeSendDeleteIntent(reason, bubbleToRemove.getEntry());
}
} }
void overflowBubble(@DismissReason int reason, Bubble bubble) { void overflowBubble(@DismissReason int reason, Bubble bubble) {
@@ -610,14 +611,21 @@ public class BubbleData {
return true; return true;
} }
private void maybeSendDeleteIntent(@DismissReason int reason, @NonNull final Bubble bubble) { private void maybeSendDeleteIntent(@DismissReason int reason,
if (reason != BubbleController.DISMISS_USER_GESTURE) return; @NonNull final NotificationEntry entry) {
PendingIntent deleteIntent = bubble.getDeleteIntent(); if (reason == BubbleController.DISMISS_USER_GESTURE) {
if (deleteIntent == null) return; Notification.BubbleMetadata bubbleMetadata = entry.getBubbleMetadata();
PendingIntent deleteIntent = bubbleMetadata != null
? bubbleMetadata.getDeleteIntent()
: null;
if (deleteIntent != null) {
try { try {
deleteIntent.send(); deleteIntent.send();
} catch (PendingIntent.CanceledException e) { } catch (PendingIntent.CanceledException e) {
Log.w(TAG, "Failed to send delete intent for bubble with key: " + bubble.getKey()); Log.w(TAG, "Failed to send delete intent for bubble with key: "
+ entry.getKey());
}
}
} }
} }

View File

@@ -74,15 +74,11 @@ internal class BubbleDataRepository @Inject constructor(
private fun transform(userId: Int, bubbles: List<Bubble>): List<BubbleEntity> { private fun transform(userId: Int, bubbles: List<Bubble>): List<BubbleEntity> {
return bubbles.mapNotNull { b -> return bubbles.mapNotNull { b ->
BubbleEntity( var shortcutId = b.shortcutInfo?.id
userId, if (shortcutId == null) shortcutId = b.entry?.bubbleMetadata?.shortcutId
b.packageName, if (shortcutId == null) return@mapNotNull null
b.shortcutInfo?.id ?: return@mapNotNull null, BubbleEntity(userId, b.packageName, shortcutId, b.key, b.rawDesiredHeight,
b.key, b.rawDesiredHeightResId)
b.rawDesiredHeight,
b.rawDesiredHeightResId,
b.title
)
} }
} }
@@ -163,13 +159,8 @@ internal class BubbleDataRepository @Inject constructor(
val bubbles = entities.mapNotNull { entity -> val bubbles = entities.mapNotNull { entity ->
shortcutMap[ShortcutKey(entity.userId, entity.packageName)] shortcutMap[ShortcutKey(entity.userId, entity.packageName)]
?.first { shortcutInfo -> entity.shortcutId == shortcutInfo.id } ?.first { shortcutInfo -> entity.shortcutId == shortcutInfo.id }
?.let { shortcutInfo -> Bubble( ?.let { shortcutInfo -> Bubble(entity.key, shortcutInfo, entity.desiredHeight,
entity.key, entity.desiredHeightResId) }
shortcutInfo,
entity.desiredHeight,
entity.desiredHeightResId,
entity.title
) }
} }
uiScope.launch { cb(bubbles) } uiScope.launch { cb(bubbles) }
} }

View File

@@ -169,7 +169,7 @@ public class BubbleExpandedView extends LinearLayout {
return; return;
} }
try { try {
if (!mIsOverflow && mBubble.getShortcutInfo() != null) { if (!mIsOverflow && mBubble.usingShortcutInfo()) {
options.setApplyActivityFlagsForBubbles(true); options.setApplyActivityFlagsForBubbles(true);
mActivityView.startShortcutActivity(mBubble.getShortcutInfo(), mActivityView.startShortcutActivity(mBubble.getShortcutInfo(),
options, null /* sourceBounds */); options, null /* sourceBounds */);

View File

@@ -31,7 +31,6 @@ import android.graphics.Paint;
import android.graphics.Path; import android.graphics.Path;
import android.graphics.PointF; import android.graphics.PointF;
import android.graphics.RectF; import android.graphics.RectF;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.ShapeDrawable; import android.graphics.drawable.ShapeDrawable;
import android.text.TextUtils; import android.text.TextUtils;
import android.view.LayoutInflater; import android.view.LayoutInflater;
@@ -224,10 +223,9 @@ public class BubbleFlyoutView extends FrameLayout {
float[] dotCenter, float[] dotCenter,
boolean hideDot) { boolean hideDot) {
final Drawable senderAvatar = flyoutMessage.senderAvatar; if (flyoutMessage.senderAvatar != null && flyoutMessage.isGroupChat) {
if (senderAvatar != null && flyoutMessage.isGroupChat) {
mSenderAvatar.setVisibility(VISIBLE); mSenderAvatar.setVisibility(VISIBLE);
mSenderAvatar.setImageDrawable(senderAvatar); mSenderAvatar.setImageDrawable(flyoutMessage.senderAvatar);
} else { } else {
mSenderAvatar.setVisibility(GONE); mSenderAvatar.setVisibility(GONE);
mSenderAvatar.setTranslationX(0); mSenderAvatar.setTranslationX(0);

View File

@@ -15,8 +15,7 @@
*/ */
package com.android.systemui.bubbles; package com.android.systemui.bubbles;
import android.annotation.NonNull; import android.app.Notification;
import android.annotation.Nullable;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.content.pm.LauncherApps; import android.content.pm.LauncherApps;
@@ -51,14 +50,15 @@ public class BubbleIconFactory extends BaseIconFactory {
/** /**
* Returns the drawable that the developer has provided to display in the bubble. * Returns the drawable that the developer has provided to display in the bubble.
*/ */
Drawable getBubbleDrawable(@NonNull final Context context, Drawable getBubbleDrawable(Context context, ShortcutInfo shortcutInfo,
@Nullable final ShortcutInfo shortcutInfo, @Nullable final Icon ic) { Notification.BubbleMetadata metadata) {
if (shortcutInfo != null) { if (shortcutInfo != null) {
LauncherApps launcherApps = LauncherApps launcherApps =
(LauncherApps) context.getSystemService(Context.LAUNCHER_APPS_SERVICE); (LauncherApps) context.getSystemService(Context.LAUNCHER_APPS_SERVICE);
int density = context.getResources().getConfiguration().densityDpi; int density = context.getResources().getConfiguration().densityDpi;
return launcherApps.getShortcutIconDrawable(shortcutInfo, density); return launcherApps.getShortcutIconDrawable(shortcutInfo, density);
} else { } else {
Icon ic = metadata.getIcon();
if (ic != null) { if (ic != null) {
if (ic.getType() == Icon.TYPE_URI if (ic.getType() == Icon.TYPE_URI
|| ic.getType() == Icon.TYPE_URI_ADAPTIVE_BITMAP) { || ic.getType() == Icon.TYPE_URI_ADAPTIVE_BITMAP) {

View File

@@ -16,6 +16,8 @@
package com.android.systemui.bubbles; package com.android.systemui.bubbles;
import android.service.notification.StatusBarNotification;
import com.android.internal.logging.UiEventLoggerImpl; import com.android.internal.logging.UiEventLoggerImpl;
/** /**
@@ -30,11 +32,12 @@ public class BubbleLoggerImpl extends UiEventLoggerImpl implements BubbleLogger
* @param e UI event * @param e UI event
*/ */
public void log(Bubble b, UiEventEnum e) { public void log(Bubble b, UiEventEnum e) {
if (b.getInstanceId() == null) { if (b.getEntry() == null) {
// Added from persistence -- TODO log this with specific event? // Added from persistence -- TODO log this with specific event?
return; return;
} }
logWithInstanceId(e, b.getAppUid(), b.getPackageName(), b.getInstanceId()); StatusBarNotification sbn = b.getEntry().getSbn();
logWithInstanceId(e, sbn.getUid(), sbn.getPackageName(), sbn.getInstanceId());
} }
/** /**

View File

@@ -291,7 +291,9 @@ class BubbleOverflowAdapter extends RecyclerView.Adapter<BubbleOverflowAdapter.V
}); });
// If the bubble was persisted, the entry is null but it should have shortcut info // If the bubble was persisted, the entry is null but it should have shortcut info
ShortcutInfo info = b.getShortcutInfo(); ShortcutInfo info = b.getEntry() == null
? b.getShortcutInfo()
: b.getEntry().getRanking().getShortcutInfo();
if (info == null) { if (info == null) {
Log.d(TAG, "ShortcutInfo required to bubble but none found for " + b); Log.d(TAG, "ShortcutInfo required to bubble but none found for " + b);
} else { } else {

View File

@@ -92,6 +92,7 @@ import com.android.systemui.bubbles.animation.StackAnimationController;
import com.android.systemui.model.SysUiState; import com.android.systemui.model.SysUiState;
import com.android.systemui.shared.system.QuickStepContract; import com.android.systemui.shared.system.QuickStepContract;
import com.android.systemui.shared.system.SysUiStatsLog; import com.android.systemui.shared.system.SysUiStatsLog;
import com.android.systemui.statusbar.notification.collection.NotificationEntry;
import com.android.systemui.statusbar.phone.CollapsedStatusBarFragment; import com.android.systemui.statusbar.phone.CollapsedStatusBarFragment;
import com.android.systemui.util.DismissCircleView; import com.android.systemui.util.DismissCircleView;
import com.android.systemui.util.FloatingContentCoordinator; import com.android.systemui.util.FloatingContentCoordinator;
@@ -293,7 +294,7 @@ public class BubbleStackView extends FrameLayout
private BubbleController.BubbleExpandListener mExpandListener; private BubbleController.BubbleExpandListener mExpandListener;
/** Callback to run when we want to unbubble the given notification's conversation. */ /** Callback to run when we want to unbubble the given notification's conversation. */
private Consumer<String> mUnbubbleConversationCallback; private Consumer<NotificationEntry> mUnbubbleConversationCallback;
private SysUiState mSysUiState; private SysUiState mSysUiState;
@@ -1013,7 +1014,10 @@ public class BubbleStackView extends FrameLayout
mManageMenu.findViewById(R.id.bubble_manage_menu_dont_bubble_container).setOnClickListener( mManageMenu.findViewById(R.id.bubble_manage_menu_dont_bubble_container).setOnClickListener(
view -> { view -> {
showManageMenu(false /* show */); showManageMenu(false /* show */);
mUnbubbleConversationCallback.accept(mBubbleData.getSelectedBubble().getKey()); final Bubble bubble = mBubbleData.getSelectedBubble();
if (bubble != null && mBubbleData.hasBubbleInStackWithKey(bubble.getKey())) {
mUnbubbleConversationCallback.accept(bubble.getEntry());
}
}); });
mManageMenu.findViewById(R.id.bubble_manage_menu_settings_container).setOnClickListener( mManageMenu.findViewById(R.id.bubble_manage_menu_settings_container).setOnClickListener(
@@ -1365,7 +1369,7 @@ public class BubbleStackView extends FrameLayout
/** Sets the function to call to un-bubble the given conversation. */ /** Sets the function to call to un-bubble the given conversation. */
public void setUnbubbleConversationCallback( public void setUnbubbleConversationCallback(
Consumer<String> unbubbleConversationCallback) { Consumer<NotificationEntry> unbubbleConversationCallback) {
mUnbubbleConversationCallback = unbubbleConversationCallback; mUnbubbleConversationCallback = unbubbleConversationCallback;
} }

View File

@@ -37,6 +37,8 @@ import android.graphics.drawable.Drawable;
import android.graphics.drawable.Icon; import android.graphics.drawable.Icon;
import android.os.AsyncTask; import android.os.AsyncTask;
import android.os.Parcelable; import android.os.Parcelable;
import android.os.UserHandle;
import android.service.notification.StatusBarNotification;
import android.text.TextUtils; import android.text.TextUtils;
import android.util.Log; import android.util.Log;
import android.util.PathParser; import android.util.PathParser;
@@ -51,7 +53,6 @@ import com.android.systemui.statusbar.notification.collection.NotificationEntry;
import java.lang.ref.WeakReference; import java.lang.ref.WeakReference;
import java.util.List; import java.util.List;
import java.util.Objects;
/** /**
* Simple task to inflate views & load necessary info to display a bubble. * Simple task to inflate views & load necessary info to display a bubble.
@@ -128,10 +129,35 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
@Nullable @Nullable
static BubbleViewInfo populate(Context c, BubbleStackView stackView, static BubbleViewInfo populate(Context c, BubbleStackView stackView,
BubbleIconFactory iconFactory, Bubble b, boolean skipInflation) { BubbleIconFactory iconFactory, Bubble b, boolean skipInflation) {
final NotificationEntry entry = b.getEntry();
if (entry == null) {
// populate from ShortcutInfo when NotificationEntry is not available
final ShortcutInfo s = b.getShortcutInfo();
return populate(c, stackView, iconFactory, skipInflation || b.isInflated(),
s.getPackage(), s.getUserHandle(), s, null);
}
final StatusBarNotification sbn = entry.getSbn();
final String bubbleShortcutId = entry.getBubbleMetadata().getShortcutId();
final ShortcutInfo si = bubbleShortcutId == null
? null : entry.getRanking().getShortcutInfo();
return populate(
c, stackView, iconFactory, skipInflation || b.isInflated(),
sbn.getPackageName(), sbn.getUser(), si, entry);
}
private static BubbleViewInfo populate(
@NonNull final Context c,
@NonNull final BubbleStackView stackView,
@NonNull final BubbleIconFactory iconFactory,
final boolean isInflated,
@NonNull final String packageName,
@NonNull final UserHandle user,
@Nullable final ShortcutInfo shortcutInfo,
@Nullable final NotificationEntry entry) {
BubbleViewInfo info = new BubbleViewInfo(); BubbleViewInfo info = new BubbleViewInfo();
// View inflation: only should do this once per bubble // View inflation: only should do this once per bubble
if (!skipInflation && !b.isInflated()) { if (!isInflated) {
LayoutInflater inflater = LayoutInflater.from(c); LayoutInflater inflater = LayoutInflater.from(c);
info.imageView = (BadgedImageView) inflater.inflate( info.imageView = (BadgedImageView) inflater.inflate(
R.layout.bubble_view, stackView, false /* attachToRoot */); R.layout.bubble_view, stackView, false /* attachToRoot */);
@@ -141,8 +167,8 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
info.expandedView.setStackView(stackView); info.expandedView.setStackView(stackView);
} }
if (b.getShortcutInfo() != null) { if (shortcutInfo != null) {
info.shortcutInfo = b.getShortcutInfo(); info.shortcutInfo = shortcutInfo;
} }
// App name & app icon // App name & app icon
@@ -152,7 +178,7 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
Drawable appIcon; Drawable appIcon;
try { try {
appInfo = pm.getApplicationInfo( appInfo = pm.getApplicationInfo(
b.getPackageName(), packageName,
PackageManager.MATCH_UNINSTALLED_PACKAGES PackageManager.MATCH_UNINSTALLED_PACKAGES
| PackageManager.MATCH_DISABLED_COMPONENTS | PackageManager.MATCH_DISABLED_COMPONENTS
| PackageManager.MATCH_DIRECT_BOOT_UNAWARE | PackageManager.MATCH_DIRECT_BOOT_UNAWARE
@@ -160,17 +186,17 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
if (appInfo != null) { if (appInfo != null) {
info.appName = String.valueOf(pm.getApplicationLabel(appInfo)); info.appName = String.valueOf(pm.getApplicationLabel(appInfo));
} }
appIcon = pm.getApplicationIcon(b.getPackageName()); appIcon = pm.getApplicationIcon(packageName);
badgedIcon = pm.getUserBadgedIcon(appIcon, b.getUser()); badgedIcon = pm.getUserBadgedIcon(appIcon, user);
} catch (PackageManager.NameNotFoundException exception) { } catch (PackageManager.NameNotFoundException exception) {
// If we can't find package... don't think we should show the bubble. // If we can't find package... don't think we should show the bubble.
Log.w(TAG, "Unable to find package: " + b.getPackageName()); Log.w(TAG, "Unable to find package: " + packageName);
return null; return null;
} }
// Badged bubble image // Badged bubble image
Drawable bubbleDrawable = iconFactory.getBubbleDrawable(c, info.shortcutInfo, Drawable bubbleDrawable = iconFactory.getBubbleDrawable(c, info.shortcutInfo,
b.getIcon()); entry == null ? null : entry.getBubbleMetadata());
if (bubbleDrawable == null) { if (bubbleDrawable == null) {
// Default to app icon // Default to app icon
bubbleDrawable = appIcon; bubbleDrawable = appIcon;
@@ -196,10 +222,8 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
Color.WHITE, WHITE_SCRIM_ALPHA); Color.WHITE, WHITE_SCRIM_ALPHA);
// Flyout // Flyout
info.flyoutMessage = b.getFlyoutMessage(); if (entry != null) {
if (info.flyoutMessage != null) { info.flyoutMessage = extractFlyoutMessage(c, entry);
info.flyoutMessage.senderAvatar =
loadSenderAvatar(c, info.flyoutMessage.senderIcon);
} }
return info; return info;
} }
@@ -211,8 +235,8 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
* notification, based on its type. Returns null if there should not be an update message. * notification, based on its type. Returns null if there should not be an update message.
*/ */
@NonNull @NonNull
static Bubble.FlyoutMessage extractFlyoutMessage(NotificationEntry entry) { static Bubble.FlyoutMessage extractFlyoutMessage(Context context,
Objects.requireNonNull(entry); NotificationEntry entry) {
final Notification underlyingNotif = entry.getSbn().getNotification(); final Notification underlyingNotif = entry.getSbn().getNotification();
final Class<? extends Notification.Style> style = underlyingNotif.getNotificationStyle(); final Class<? extends Notification.Style> style = underlyingNotif.getNotificationStyle();
@@ -240,9 +264,20 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
if (latestMessage != null) { if (latestMessage != null) {
bubbleMessage.message = latestMessage.getText(); bubbleMessage.message = latestMessage.getText();
Person sender = latestMessage.getSenderPerson(); Person sender = latestMessage.getSenderPerson();
bubbleMessage.senderName = sender != null ? sender.getName() : null; bubbleMessage.senderName = sender != null
? sender.getName()
: null;
bubbleMessage.senderAvatar = null; bubbleMessage.senderAvatar = null;
bubbleMessage.senderIcon = sender != null ? sender.getIcon() : null; if (sender != null && sender.getIcon() != null) {
if (sender.getIcon().getType() == Icon.TYPE_URI
|| sender.getIcon().getType() == Icon.TYPE_URI_ADAPTIVE_BITMAP) {
context.grantUriPermission(context.getPackageName(),
sender.getIcon().getUri(),
Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
bubbleMessage.senderAvatar = sender.getIcon().loadDrawable(context);
}
return bubbleMessage; return bubbleMessage;
} }
} else if (Notification.InboxStyle.class.equals(style)) { } else if (Notification.InboxStyle.class.equals(style)) {
@@ -271,15 +306,4 @@ public class BubbleViewInfoTask extends AsyncTask<Void, Void, BubbleViewInfoTask
return bubbleMessage; return bubbleMessage;
} }
@Nullable
static Drawable loadSenderAvatar(@NonNull final Context context, @Nullable final Icon icon) {
Objects.requireNonNull(context);
if (icon == null) return null;
if (icon.getType() == Icon.TYPE_URI || icon.getType() == Icon.TYPE_URI_ADAPTIVE_BITMAP) {
context.grantUriPermission(context.getPackageName(),
icon.getUri(), Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
return icon.loadDrawable(context);
}
} }

View File

@@ -24,6 +24,5 @@ data class BubbleEntity(
val shortcutId: String, val shortcutId: String,
val key: String, val key: String,
val desiredHeight: Int, val desiredHeight: Int,
@DimenRes val desiredHeightResId: Int, @DimenRes val desiredHeightResId: Int
val title: String? = null
) )

View File

@@ -33,7 +33,6 @@ private const val ATTR_SHORTCUT_ID = "sid"
private const val ATTR_KEY = "key" private const val ATTR_KEY = "key"
private const val ATTR_DESIRED_HEIGHT = "h" private const val ATTR_DESIRED_HEIGHT = "h"
private const val ATTR_DESIRED_HEIGHT_RES_ID = "hid" private const val ATTR_DESIRED_HEIGHT_RES_ID = "hid"
private const val ATTR_TITLE = "t"
/** /**
* Writes the bubbles in xml format into given output stream. * Writes the bubbles in xml format into given output stream.
@@ -64,7 +63,6 @@ private fun writeXmlEntry(serializer: XmlSerializer, bubble: BubbleEntity) {
serializer.attribute(null, ATTR_KEY, bubble.key) serializer.attribute(null, ATTR_KEY, bubble.key)
serializer.attribute(null, ATTR_DESIRED_HEIGHT, bubble.desiredHeight.toString()) serializer.attribute(null, ATTR_DESIRED_HEIGHT, bubble.desiredHeight.toString())
serializer.attribute(null, ATTR_DESIRED_HEIGHT_RES_ID, bubble.desiredHeightResId.toString()) serializer.attribute(null, ATTR_DESIRED_HEIGHT_RES_ID, bubble.desiredHeightResId.toString())
bubble.title?.let { serializer.attribute(null, ATTR_TITLE, it) }
serializer.endTag(null, TAG_BUBBLE) serializer.endTag(null, TAG_BUBBLE)
} catch (e: IOException) { } catch (e: IOException) {
throw RuntimeException(e) throw RuntimeException(e)
@@ -94,8 +92,7 @@ private fun readXmlEntry(parser: XmlPullParser): BubbleEntity? {
parser.getAttributeWithName(ATTR_SHORTCUT_ID) ?: return null, parser.getAttributeWithName(ATTR_SHORTCUT_ID) ?: return null,
parser.getAttributeWithName(ATTR_KEY) ?: return null, parser.getAttributeWithName(ATTR_KEY) ?: return null,
parser.getAttributeWithName(ATTR_DESIRED_HEIGHT)?.toInt() ?: return null, parser.getAttributeWithName(ATTR_DESIRED_HEIGHT)?.toInt() ?: return null,
parser.getAttributeWithName(ATTR_DESIRED_HEIGHT_RES_ID)?.toInt() ?: return null, parser.getAttributeWithName(ATTR_DESIRED_HEIGHT_RES_ID)?.toInt() ?: return null
parser.getAttributeWithName(ATTR_TITLE)
) )
} }

View File

@@ -304,10 +304,6 @@ public class BubbleControllerTest extends SysuiTestCase {
public void testPromoteBubble_autoExpand() throws Exception { public void testPromoteBubble_autoExpand() throws Exception {
mBubbleController.updateBubble(mRow2.getEntry()); mBubbleController.updateBubble(mRow2.getEntry());
mBubbleController.updateBubble(mRow.getEntry()); mBubbleController.updateBubble(mRow.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow.getEntry().getKey()))
.thenReturn(mRow.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow2.getEntry().getKey()))
.thenReturn(mRow2.getEntry());
mBubbleController.removeBubble( mBubbleController.removeBubble(
mRow.getEntry().getKey(), BubbleController.DISMISS_USER_GESTURE); mRow.getEntry().getKey(), BubbleController.DISMISS_USER_GESTURE);
@@ -335,10 +331,6 @@ public class BubbleControllerTest extends SysuiTestCase {
mBubbleController.updateBubble(mRow2.getEntry()); mBubbleController.updateBubble(mRow2.getEntry());
mBubbleController.updateBubble(mRow.getEntry(), /* suppressFlyout */ mBubbleController.updateBubble(mRow.getEntry(), /* suppressFlyout */
false, /* showInShade */ true); false, /* showInShade */ true);
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow.getEntry().getKey()))
.thenReturn(mRow.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow2.getEntry().getKey()))
.thenReturn(mRow2.getEntry());
mBubbleController.removeBubble( mBubbleController.removeBubble(
mRow.getEntry().getKey(), BubbleController.DISMISS_USER_GESTURE); mRow.getEntry().getKey(), BubbleController.DISMISS_USER_GESTURE);
@@ -441,16 +433,15 @@ public class BubbleControllerTest extends SysuiTestCase {
assertTrue(mSysUiStateBubblesExpanded); assertTrue(mSysUiStateBubblesExpanded);
// Last added is the one that is expanded // Last added is the one that is expanded
assertEquals(mRow2.getEntry().getKey(), mBubbleData.getSelectedBubble().getKey()); assertEquals(mRow2.getEntry(), mBubbleData.getSelectedBubble().getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(
mRow2.getEntry())); mRow2.getEntry()));
// Switch which bubble is expanded // Switch which bubble is expanded
mBubbleData.setSelectedBubble(mBubbleData.getBubbleInStackWithKey( mBubbleData.setSelectedBubble(mBubbleData.getBubbleInStackWithKey(mRow.getEntry().getKey()));
mRow.getEntry().getKey()));
mBubbleData.setExpanded(true); mBubbleData.setExpanded(true);
assertEquals(mRow.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(
mRow.getEntry())); mRow.getEntry()));
@@ -552,27 +543,27 @@ public class BubbleControllerTest extends SysuiTestCase {
verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow2.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow2.getEntry().getKey());
// Last added is the one that is expanded // Last added is the one that is expanded
assertEquals(mRow2.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow2.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(
mRow2.getEntry())); mRow2.getEntry()));
// Dismiss currently expanded // Dismiss currently expanded
mBubbleController.removeBubble( mBubbleController.removeBubble(
mBubbleData.getBubbleInStackWithKey( mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey())
stackView.getExpandedBubble().getKey()).getKey(), .getEntry().getKey(),
BubbleController.DISMISS_USER_GESTURE); BubbleController.DISMISS_USER_GESTURE);
verify(mBubbleExpandListener).onBubbleExpandChanged(false, mRow2.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(false, mRow2.getEntry().getKey());
// Make sure first bubble is selected // Make sure first bubble is selected
assertEquals(mRow.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow.getEntry().getKey());
// Dismiss that one // Dismiss that one
mBubbleController.removeBubble( mBubbleController.removeBubble(
mBubbleData.getBubbleInStackWithKey( mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey())
stackView.getExpandedBubble().getKey()).getKey(), .getEntry().getKey(),
BubbleController.DISMISS_USER_GESTURE); BubbleController.DISMISS_USER_GESTURE);
// Make sure state changes and collapse happens // Make sure state changes and collapse happens
@@ -848,12 +839,6 @@ public class BubbleControllerTest extends SysuiTestCase {
mRow2.getEntry(), /* suppressFlyout */ false, /* showInShade */ false); mRow2.getEntry(), /* suppressFlyout */ false, /* showInShade */ false);
mBubbleController.updateBubble( mBubbleController.updateBubble(
mRow3.getEntry(), /* suppressFlyout */ false, /* showInShade */ false); mRow3.getEntry(), /* suppressFlyout */ false, /* showInShade */ false);
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow.getEntry().getKey()))
.thenReturn(mRow.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow2.getEntry().getKey()))
.thenReturn(mRow2.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow3.getEntry().getKey()))
.thenReturn(mRow3.getEntry());
assertEquals(mBubbleData.getBubbles().size(), 3); assertEquals(mBubbleData.getBubbles().size(), 3);
mBubbleData.setMaxOverflowBubbles(1); mBubbleData.setMaxOverflowBubbles(1);
@@ -923,8 +908,6 @@ public class BubbleControllerTest extends SysuiTestCase {
// GIVEN a group summary with a bubble child // GIVEN a group summary with a bubble child
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
mEntryListener.onPendingEntryAdded(groupedBubble.getEntry()); mEntryListener.onPendingEntryAdded(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);
assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey())); assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey()));
@@ -944,8 +927,6 @@ public class BubbleControllerTest extends SysuiTestCase {
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
mEntryListener.onPendingEntryAdded(groupedBubble.getEntry()); mEntryListener.onPendingEntryAdded(groupedBubble.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);
assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey())); assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey()));
@@ -967,8 +948,6 @@ public class BubbleControllerTest extends SysuiTestCase {
// GIVEN a group summary with two (non-bubble) children and one bubble child // GIVEN a group summary with two (non-bubble) children and one bubble child
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(2); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(2);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
mEntryListener.onPendingEntryAdded(groupedBubble.getEntry()); mEntryListener.onPendingEntryAdded(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);

View File

@@ -86,7 +86,8 @@ public class BubbleTest extends SysuiTestCase {
final String msg = "Hello there!"; final String msg = "Hello there!";
doReturn(Notification.Style.class).when(mNotif).getNotificationStyle(); doReturn(Notification.Style.class).when(mNotif).getNotificationStyle();
mExtras.putCharSequence(Notification.EXTRA_TEXT, msg); mExtras.putCharSequence(Notification.EXTRA_TEXT, msg);
assertEquals(msg, BubbleViewInfoTask.extractFlyoutMessage(mEntry).message); assertEquals(msg, BubbleViewInfoTask.extractFlyoutMessage(mContext,
mEntry).message);
} }
@Test @Test
@@ -97,7 +98,8 @@ public class BubbleTest extends SysuiTestCase {
mExtras.putCharSequence(Notification.EXTRA_BIG_TEXT, msg); mExtras.putCharSequence(Notification.EXTRA_BIG_TEXT, msg);
// Should be big text, not the small text. // Should be big text, not the small text.
assertEquals(msg, BubbleViewInfoTask.extractFlyoutMessage(mEntry).message); assertEquals(msg, BubbleViewInfoTask.extractFlyoutMessage(mContext,
mEntry).message);
} }
@Test @Test
@@ -105,7 +107,8 @@ public class BubbleTest extends SysuiTestCase {
doReturn(Notification.MediaStyle.class).when(mNotif).getNotificationStyle(); doReturn(Notification.MediaStyle.class).when(mNotif).getNotificationStyle();
// Media notifs don't get update messages. // Media notifs don't get update messages.
assertNull(BubbleViewInfoTask.extractFlyoutMessage(mEntry).message); assertNull(BubbleViewInfoTask.extractFlyoutMessage(mContext,
mEntry).message);
} }
@Test @Test
@@ -121,7 +124,7 @@ public class BubbleTest extends SysuiTestCase {
// Should be the last one only. // Should be the last one only.
assertEquals("Really? I prefer them that way.", assertEquals("Really? I prefer them that way.",
BubbleViewInfoTask.extractFlyoutMessage(mEntry).message); BubbleViewInfoTask.extractFlyoutMessage(mContext, mEntry).message);
} }
@Test @Test
@@ -136,8 +139,11 @@ public class BubbleTest extends SysuiTestCase {
"Oh, hello!", 0, "Mady").toBundle()}); "Oh, hello!", 0, "Mady").toBundle()});
// Should be the last one only. // Should be the last one only.
assertEquals("Oh, hello!", BubbleViewInfoTask.extractFlyoutMessage(mEntry).message); assertEquals("Oh, hello!",
assertEquals("Mady", BubbleViewInfoTask.extractFlyoutMessage(mEntry).senderName); BubbleViewInfoTask.extractFlyoutMessage(mContext, mEntry).message);
assertEquals("Mady",
BubbleViewInfoTask.extractFlyoutMessage(mContext,
mEntry).senderName);
} }
@Test @Test

View File

@@ -302,8 +302,6 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
public void testRemoveBubble_withDismissedNotif_notInOverflow() { public void testRemoveBubble_withDismissedNotif_notInOverflow() {
mEntryListener.onEntryAdded(mRow.getEntry()); mEntryListener.onEntryAdded(mRow.getEntry());
mBubbleController.updateBubble(mRow.getEntry()); mBubbleController.updateBubble(mRow.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(mRow.getEntry().getKey()))
.thenReturn(mRow.getEntry());
assertTrue(mBubbleController.hasBubbles()); assertTrue(mBubbleController.hasBubbles());
assertFalse(mBubbleController.isBubbleNotificationSuppressedFromShade(mRow.getEntry())); assertFalse(mBubbleController.isBubbleNotificationSuppressedFromShade(mRow.getEntry()));
@@ -390,14 +388,14 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
true, mRow.getEntry().getKey()); true, mRow.getEntry().getKey());
// Last added is the one that is expanded // Last added is the one that is expanded
assertEquals(mRow2.getEntry().getKey(), mBubbleData.getSelectedBubble().getKey()); assertEquals(mRow2.getEntry(), mBubbleData.getSelectedBubble().getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(mRow2.getEntry())); assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(mRow2.getEntry()));
// Switch which bubble is expanded // Switch which bubble is expanded
mBubbleData.setSelectedBubble(mBubbleData.getBubbleInStackWithKey(mRow.getEntry().getKey())); mBubbleData.setSelectedBubble(mBubbleData.getBubbleInStackWithKey(mRow.getEntry().getKey()));
mBubbleData.setExpanded(true); mBubbleData.setExpanded(true);
assertEquals(mRow.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(
mRow.getEntry())); mRow.getEntry()));
@@ -490,27 +488,27 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow2.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow2.getEntry().getKey());
// Last added is the one that is expanded // Last added is the one that is expanded
assertEquals(mRow2.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow2.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade( assertTrue(mBubbleController.isBubbleNotificationSuppressedFromShade(
mRow2.getEntry())); mRow2.getEntry()));
// Dismiss currently expanded // Dismiss currently expanded
mBubbleController.removeBubble( mBubbleController.removeBubble(
mBubbleData.getBubbleInStackWithKey( mBubbleData.getBubbleInStackWithKey(
stackView.getExpandedBubble().getKey()).getKey(), stackView.getExpandedBubble().getKey()).getEntry().getKey(),
BubbleController.DISMISS_USER_GESTURE); BubbleController.DISMISS_USER_GESTURE);
verify(mBubbleExpandListener).onBubbleExpandChanged(false, mRow2.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(false, mRow2.getEntry().getKey());
// Make sure first bubble is selected // Make sure first bubble is selected
assertEquals(mRow.getEntry().getKey(), mBubbleData.getBubbleInStackWithKey( assertEquals(mRow.getEntry(),
stackView.getExpandedBubble().getKey()).getKey()); mBubbleData.getBubbleInStackWithKey(stackView.getExpandedBubble().getKey()).getEntry());
verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow.getEntry().getKey()); verify(mBubbleExpandListener).onBubbleExpandChanged(true, mRow.getEntry().getKey());
// Dismiss that one // Dismiss that one
mBubbleController.removeBubble( mBubbleController.removeBubble(
mBubbleData.getBubbleInStackWithKey( mBubbleData.getBubbleInStackWithKey(
stackView.getExpandedBubble().getKey()).getKey(), stackView.getExpandedBubble().getKey()).getEntry().getKey(),
BubbleController.DISMISS_USER_GESTURE); BubbleController.DISMISS_USER_GESTURE);
// Make sure state changes and collapse happens // Make sure state changes and collapse happens
@@ -769,8 +767,6 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
mEntryListener.onEntryAdded(groupedBubble.getEntry()); mEntryListener.onEntryAdded(groupedBubble.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);
assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey())); assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey()));
@@ -789,8 +785,6 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(0);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
mEntryListener.onEntryAdded(groupedBubble.getEntry()); mEntryListener.onEntryAdded(groupedBubble.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);
assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey())); assertTrue(mBubbleData.hasBubbleInStackWithKey(groupedBubble.getEntry().getKey()));
@@ -813,8 +807,6 @@ public class NewNotifPipelineBubbleControllerTest extends SysuiTestCase {
ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(2); ExpandableNotificationRow groupSummary = mNotificationTestHelper.createGroup(2);
ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup(); ExpandableNotificationRow groupedBubble = mNotificationTestHelper.createBubbleInGroup();
mEntryListener.onEntryAdded(groupedBubble.getEntry()); mEntryListener.onEntryAdded(groupedBubble.getEntry());
when(mNotificationEntryManager.getPendingOrActiveNotif(groupedBubble.getEntry().getKey()))
.thenReturn(groupedBubble.getEntry());
groupSummary.addChildNotification(groupedBubble); groupSummary.addChildNotification(groupedBubble);
// WHEN the summary is dismissed // WHEN the summary is dismissed

View File

@@ -32,7 +32,7 @@ class BubblePersistentRepositoryTest : SysuiTestCase() {
private val bubbles = listOf( private val bubbles = listOf(
BubbleEntity(0, "com.example.messenger", "shortcut-1", "key-1", 120, 0), BubbleEntity(0, "com.example.messenger", "shortcut-1", "key-1", 120, 0),
BubbleEntity(10, "com.example.chat", "alice and bob", "key-2", 0, 16537428, "title"), BubbleEntity(10, "com.example.chat", "alice and bob", "key-2", 0, 16537428),
BubbleEntity(0, "com.example.messenger", "shortcut-2", "key-3", 120, 0) BubbleEntity(0, "com.example.messenger", "shortcut-2", "key-3", 120, 0)
) )
private lateinit var repository: BubblePersistentRepository private lateinit var repository: BubblePersistentRepository

View File

@@ -37,10 +37,9 @@ class BubbleVolatileRepositoryTest : SysuiTestCase() {
private val user0 = UserHandle.of(0) private val user0 = UserHandle.of(0)
private val user10 = UserHandle.of(10) private val user10 = UserHandle.of(10)
private val bubble1 = BubbleEntity(0, "com.example.messenger", "shortcut-1", "key-1", 120, 0) private val bubble1 = BubbleEntity(0, PKG_MESSENGER, "shortcut-1", "k1", 120, 0)
private val bubble2 = BubbleEntity(10, "com.example.chat", "alice and bob", private val bubble2 = BubbleEntity(10, PKG_CHAT, "alice and bob", "k2", 0, 16537428)
"key-2", 0, 16537428, "title") private val bubble3 = BubbleEntity(0, PKG_MESSENGER, "shortcut-2", "k3", 120, 0)
private val bubble3 = BubbleEntity(0, "com.example.messenger", "shortcut-2", "key-3", 120, 0)
private val bubbles = listOf(bubble1, bubble2, bubble3) private val bubbles = listOf(bubble1, bubble2, bubble3)

View File

@@ -32,7 +32,7 @@ class BubbleXmlHelperTest : SysuiTestCase() {
private val bubbles = listOf( private val bubbles = listOf(
BubbleEntity(0, "com.example.messenger", "shortcut-1", "k1", 120, 0), BubbleEntity(0, "com.example.messenger", "shortcut-1", "k1", 120, 0),
BubbleEntity(10, "com.example.chat", "alice and bob", "k2", 0, 16537428, "title"), BubbleEntity(10, "com.example.chat", "alice and bob", "k2", 0, 16537428),
BubbleEntity(0, "com.example.messenger", "shortcut-2", "k3", 120, 0) BubbleEntity(0, "com.example.messenger", "shortcut-2", "k3", 120, 0)
) )
@@ -40,7 +40,7 @@ class BubbleXmlHelperTest : SysuiTestCase() {
fun testWriteXml() { fun testWriteXml() {
val expectedEntries = """ val expectedEntries = """
<bb uid="0" pkg="com.example.messenger" sid="shortcut-1" key="k1" h="120" hid="0" /> <bb uid="0" pkg="com.example.messenger" sid="shortcut-1" key="k1" h="120" hid="0" />
<bb uid="10" pkg="com.example.chat" sid="alice and bob" key="k2" h="0" hid="16537428" t="title" /> <bb uid="10" pkg="com.example.chat" sid="alice and bob" key="k2" h="0" hid="16537428" />
<bb uid="0" pkg="com.example.messenger" sid="shortcut-2" key="k3" h="120" hid="0" /> <bb uid="0" pkg="com.example.messenger" sid="shortcut-2" key="k3" h="120" hid="0" />
""".trimIndent() """.trimIndent()
ByteArrayOutputStream().use { ByteArrayOutputStream().use {
@@ -57,7 +57,7 @@ class BubbleXmlHelperTest : SysuiTestCase() {
<?xml version='1.0' encoding='utf-8' standalone='yes' ?> <?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<bs> <bs>
<bb uid="0" pkg="com.example.messenger" sid="shortcut-1" key="k1" h="120" hid="0" /> <bb uid="0" pkg="com.example.messenger" sid="shortcut-1" key="k1" h="120" hid="0" />
<bb uid="10" pkg="com.example.chat" sid="alice and bob" key="k2" h="0" hid="16537428" t="title" /> <bb uid="10" pkg="com.example.chat" sid="alice and bob" key="k2" h="0" hid="16537428" />
<bb uid="0" pkg="com.example.messenger" sid="shortcut-2" key="k3" h="120" hid="0" /> <bb uid="0" pkg="com.example.messenger" sid="shortcut-2" key="k3" h="120" hid="0" />
</bs> </bs>
""".trimIndent() """.trimIndent()