Loading packages/SystemUI/src/com/android/systemui/statusbar/StatusBarIconView.java +4 −0 Original line number Diff line number Diff line Loading @@ -645,6 +645,10 @@ public class StatusBarIconView extends AnimatedImageView implements StatusIconDi + "slot='" + mSlot + "' alpha=" + getAlpha() + " icon=" + mIcon + " visibleState=" + getVisibleStateString(getVisibleState()) + " iconColor=#" + Integer.toHexString(mIconColor) + " staticDrawableColor=#" + Integer.toHexString(mDrawableColor) + " decorColor=#" + Integer.toHexString(mDecorColor) + " animationStartColor=#" + Integer.toHexString(mAnimationStartColor) + " currentSetColor=#" + Integer.toHexString(mCurrentSetColor) + " notification=" + mNotification + ')'; } Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java +9 −2 Original line number Diff line number Diff line Loading @@ -918,8 +918,15 @@ public class NotificationIconContainer extends ViewGroup { } } icon.setVisibleState(visibleState, animationsAllowed); if (NotificationIconContainerRefactor.isEnabled()) { if (mOverrideIconColor) { icon.setIconColor(mThemedTextColorPrimary, /* animate= */ needsCannedAnimation && animationsAllowed); } } else { icon.setIconColor(mOverrideIconColor ? mThemedTextColorPrimary : iconColor, needsCannedAnimation && animationsAllowed); } if (animate) { animateTo(icon, animationProperties); } else { Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/StatusBarIconView.java +4 −0 Original line number Diff line number Diff line Loading @@ -645,6 +645,10 @@ public class StatusBarIconView extends AnimatedImageView implements StatusIconDi + "slot='" + mSlot + "' alpha=" + getAlpha() + " icon=" + mIcon + " visibleState=" + getVisibleStateString(getVisibleState()) + " iconColor=#" + Integer.toHexString(mIconColor) + " staticDrawableColor=#" + Integer.toHexString(mDrawableColor) + " decorColor=#" + Integer.toHexString(mDecorColor) + " animationStartColor=#" + Integer.toHexString(mAnimationStartColor) + " currentSetColor=#" + Integer.toHexString(mCurrentSetColor) + " notification=" + mNotification + ')'; } Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java +9 −2 Original line number Diff line number Diff line Loading @@ -918,8 +918,15 @@ public class NotificationIconContainer extends ViewGroup { } } icon.setVisibleState(visibleState, animationsAllowed); if (NotificationIconContainerRefactor.isEnabled()) { if (mOverrideIconColor) { icon.setIconColor(mThemedTextColorPrimary, /* animate= */ needsCannedAnimation && animationsAllowed); } } else { icon.setIconColor(mOverrideIconColor ? mThemedTextColorPrimary : iconColor, needsCannedAnimation && animationsAllowed); } if (animate) { animateTo(icon, animationProperties); } else { Loading