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

Commit 17e453e9 authored by Lyn Han's avatar Lyn Han Committed by android-build-merger
Browse files

Merge "Set max alpha for dot color" into qt-dev

am: 3e0dc645

Change-Id: I1345a90ccb3688f8c61cb47b8ed05e6fcc07a54d
parents d2f9a53d 3e0dc645
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.ImageView;

import com.android.internal.graphics.ColorUtils;
import com.android.systemui.R;

/**
@@ -101,7 +102,7 @@ public class BadgedImageView extends ImageView {
     * The colour to use for the dot.
     */
    public void setDotColor(int color) {
        mUpdateDotColor = color;
        mUpdateDotColor = ColorUtils.setAlphaComponent(color, 255 /* alpha */);
        invalidate();
    }