Merge "PIN unlock buttons - contrast issue" into sc-dev

This commit is contained in:
Matt Pietal
2021-07-15 00:49:57 +00:00
committed by Android (Google) Code Review

View File

@@ -88,13 +88,10 @@ public class NumPadButton extends AlphaOptimizedImageButton {
* Reload colors from resources. * Reload colors from resources.
**/ **/
public void reloadColors() { public void reloadColors() {
if (mAnimator != null) { if (mAnimator != null) mAnimator.reloadColors(getContext());
mAnimator.reloadColors(getContext());
} else { int textColor = Utils.getColorAttrDefaultColor(getContext(),
// Needed for old style pin android.R.attr.colorBackground);
int textColor = Utils.getColorAttr(getContext(), android.R.attr.textColorPrimary) ((VectorDrawable) getDrawable()).setTintList(ColorStateList.valueOf(textColor));
.getDefaultColor();
((VectorDrawable) getDrawable()).setTintList(ColorStateList.valueOf(textColor));
}
} }
} }