diff options
| author | Selim Cinek <cinek@google.com> | 2014-11-20 17:01:22 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-11-20 17:01:24 +0000 |
| commit | b18cbb9a19d2213c0a5b1feecee5e9d4e88125c4 (patch) | |
| tree | 419a9328dc5009317a21f852105f25fa107c8f41 /packages/SystemUI/src | |
| parent | 419754545ea0768a7fa715daddedef75b7b31bfa (diff) | |
| parent | 7b8157ef238d4eec7698338e768a602d4182cbb7 (diff) | |
| download | frameworks_base-b18cbb9a19d2213c0a5b1feecee5e9d4e88125c4.zip frameworks_base-b18cbb9a19d2213c0a5b1feecee5e9d4e88125c4.tar.gz frameworks_base-b18cbb9a19d2213c0a5b1feecee5e9d4e88125c4.tar.bz2 | |
Merge "Fixed a bug where the notifications were not animating" into lmp-mr1-dev
Diffstat (limited to 'packages/SystemUI/src')
| -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 99214a0..ec0e46a 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(); } |
