Always highlight unread count

Fixes: 188646708
Test: get unread count within a group
Change-Id: I41d67e5e488e0d3dbc3873d6d50d55ec4ab8c9f2
This commit is contained in:
Jeff DeCew
2021-06-03 11:43:43 -04:00
parent 0def72662f
commit 7f8bcb8add
2 changed files with 1 additions and 16 deletions

View File

@@ -52,7 +52,6 @@ public class NotificationExpandButton extends FrameLayout {
private int mDefaultTextColor;
private int mHighlightPillColor;
private int mHighlightTextColor;
private boolean mDisallowColor;
public NotificationExpandButton(Context context) {
this(context, null, 0, 0);
@@ -108,14 +107,6 @@ public class NotificationExpandButton extends FrameLayout {
return super.pointInView(localX, localY, slop);
}
/**
* Disable the use of the accent colors for this view, if true.
*/
public void setGrayedOut(boolean shouldApply) {
mDisallowColor = shouldApply;
updateColors();
}
@Override
public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
super.onInitializeAccessibilityNodeInfo(info);
@@ -164,7 +155,7 @@ public class NotificationExpandButton extends FrameLayout {
}
private void updateColors() {
if (shouldShowNumber() && !mDisallowColor) {
if (shouldShowNumber()) {
if (mHighlightPillColor != 0) {
mPillView.setBackgroundTintList(ColorStateList.valueOf(mHighlightPillColor));
}

View File

@@ -32,7 +32,6 @@ import com.android.internal.R;
import com.android.internal.widget.CachingIconView;
import com.android.internal.widget.ConversationLayout;
import com.android.internal.widget.ImageFloatingTextView;
import com.android.internal.widget.NotificationExpandButton;
import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow;
import com.android.systemui.statusbar.notification.row.NotificationContentView;
@@ -80,11 +79,6 @@ public class NotificationGroupingUtil {
if (icon != null) {
icon.setGrayedOut(apply);
}
NotificationExpandButton expand =
view.findViewById(com.android.internal.R.id.expand_button);
if (expand != null) {
expand.setGrayedOut(apply);
}
}
};