diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/SignalClusterView.java b/packages/SystemUI/src/com/android/systemui/statusbar/SignalClusterView.java index 2b59c68a44b86..599e575a0e240 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/SignalClusterView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/SignalClusterView.java @@ -234,6 +234,14 @@ public class SignalClusterView super.onDetachedFromWindow(); } + @Override + protected void onLayout(boolean changed, int l, int t, int r, int b) { + super.onLayout(changed, l, t, r, b); + + // Re-run all checks against the tint area for all icons + applyIconTint(); + } + // From SecurityController. @Override public void onStateChanged() {