Merge "Use profile badge without background for notification history" into main

This commit is contained in:
Treehugger Robot
2023-09-27 13:41:12 +00:00
committed by Android (Google) Code Review

View File

@@ -120,7 +120,7 @@ public class NotificationSbnAdapter extends
holder.setDividerVisible(position < (mValues.size() -1));
int userId = normalizeUserId(sbn);
if (!mUserBadgeCache.containsKey(userId)) {
Drawable profile = mContext.getPackageManager().getUserBadgeForDensity(
Drawable profile = mContext.getPackageManager().getUserBadgeForDensityNoBackground(
UserHandle.of(userId), 0);
mUserBadgeCache.put(userId, profile);
}