diff options
| author | 2014-11-20 16:00:32 +0100 | |
|---|---|---|
| committer | 2014-11-20 16:04:00 +0100 | |
| commit | 7b8157ef238d4eec7698338e768a602d4182cbb7 (patch) | |
| tree | c4f32fceee05449fe65d1eda13d3ab8b6406e7b9 | |
| parent | 04b6a6d3a17e40599d90ccabc6a8481a62dd2ae1 (diff) | |
Fixed a bug where the notifications were not animating
Bug: 18463381
Change-Id: I1064535f120dbc334a10d70b7fef232adb08a45f
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java index 99214a0c237a..ec0e46a91938 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationContentView.java @@ -84,8 +84,8 @@ public class NotificationContentView extends FrameLayout { } @Override - protected void onFinishInflate() { - super.onFinishInflate(); + protected void onAttachedToWindow() { + super.onAttachedToWindow(); updateVisibility(); } |