Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5d4c422 authored by Jeff DeCew's avatar Jeff DeCew Committed by Automerger Merge Worker
Browse files

Merge "Always highlight unread count" into sc-dev am: 834bf3a8

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14805378

Change-Id: Id257fe36b1662f729f3430aee095c4f738e6a9bd
parents 4ad639f5 834bf3a8
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -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));
            }
+0 −6
Original line number Diff line number Diff line
@@ -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);
            }
        }
    };