Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java +1 −1 Original line number Diff line number Diff line Loading @@ -512,7 +512,7 @@ public class LegacyNotificationIconAreaControllerImpl implements } public void showIconIsolated(StatusBarIconView icon, boolean animated) { mNotificationIcons.showIconIsolated(icon, animated); mNotificationIcons.showIconIsolatedLegacy(icon, animated); } public void setIsolatedIconLocation(@NotNull Rect iconDrawingRect, boolean requireStateUpdate) { Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java +4 −4 Original line number Diff line number Diff line Loading @@ -701,13 +701,13 @@ public class NotificationIconContainer extends ViewGroup { } @Deprecated public void showIconIsolated(StatusBarIconView icon, boolean animated) { public void showIconIsolatedLegacy(StatusBarIconView icon, boolean animated) { NotificationIconContainerRefactor.assertInLegacyMode(); if (animated) { showIconIsolatedAnimated(icon, null); } else { showIconIsolated(icon); mIsolatedIconForAnimation = icon != null ? icon : mIsolatedIcon; } mIsolatedIcon = icon; updateState(); } public void showIconIsolatedAnimated(StatusBarIconView icon, Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/LegacyNotificationIconAreaControllerImpl.java +1 −1 Original line number Diff line number Diff line Loading @@ -512,7 +512,7 @@ public class LegacyNotificationIconAreaControllerImpl implements } public void showIconIsolated(StatusBarIconView icon, boolean animated) { mNotificationIcons.showIconIsolated(icon, animated); mNotificationIcons.showIconIsolatedLegacy(icon, animated); } public void setIsolatedIconLocation(@NotNull Rect iconDrawingRect, boolean requireStateUpdate) { Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java +4 −4 Original line number Diff line number Diff line Loading @@ -701,13 +701,13 @@ public class NotificationIconContainer extends ViewGroup { } @Deprecated public void showIconIsolated(StatusBarIconView icon, boolean animated) { public void showIconIsolatedLegacy(StatusBarIconView icon, boolean animated) { NotificationIconContainerRefactor.assertInLegacyMode(); if (animated) { showIconIsolatedAnimated(icon, null); } else { showIconIsolated(icon); mIsolatedIconForAnimation = icon != null ? icon : mIsolatedIcon; } mIsolatedIcon = icon; updateState(); } public void showIconIsolatedAnimated(StatusBarIconView icon, Loading