diff options
author | 2020-07-15 16:09:40 +0000 | |
---|---|---|
committer | 2020-07-15 16:09:40 +0000 | |
commit | 31b41cb1e9fb14e47554d0b08f62344e4fa5830d (patch) | |
tree | fd2f73dcd6f74c8623a23da2b92c22e1bd74e30c | |
parent | b99a7abd1622ac1b2ecdc1f2e78e9366679f8dd0 (diff) | |
parent | a455113a2b5e3d965c134312d59b1d9d4d59f84f (diff) |
Merge "Prevent NotificationIconContainer$3 from retaining NotificationEntry"
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java index 07eaaa187fbe..bf858520c338 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationIconContainer.java @@ -19,8 +19,6 @@ package com.android.systemui.statusbar.phone; import static com.android.systemui.statusbar.phone.HeadsUpAppearanceController.CONTENT_FADE_DELAY; import static com.android.systemui.statusbar.phone.HeadsUpAppearanceController.CONTENT_FADE_DURATION; -import android.animation.Animator; -import android.animation.AnimatorListenerAdapter; import android.content.Context; import android.content.res.Configuration; import android.graphics.Canvas; @@ -807,6 +805,7 @@ public class NotificationIconContainer extends AlphaOptimizedFrameLayout { } else { super.applyToView(view); } + sTempProperties.setAnimationEndAction(null); boolean inShelf = iconAppearAmount == 1.0f; icon.setIsInShelf(inShelf); } |