diff options
author | Adam Powell <adamp@google.com> | 2015-06-18 17:20:42 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-06-18 17:20:44 +0000 |
commit | 2a1f91641895c3193204655bea2f67eb0fe6c439 (patch) | |
tree | 29f2cf51fed2eda27a9e6d0f6ae041b908cfba4d /packages | |
parent | 91870fa281c736b59fb8481e4469da51397c586d (diff) | |
parent | 6690d018b9c08757d20182170948a3cba961e84c (diff) | |
download | frameworks_base-2a1f91641895c3193204655bea2f67eb0fe6c439.zip frameworks_base-2a1f91641895c3193204655bea2f67eb0fe6c439.tar.gz frameworks_base-2a1f91641895c3193204655bea2f67eb0fe6c439.tar.bz2 |
Merge "Un-hide ViewGroup#onViewAdded/onViewRemoved" into mnc-dev
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java index 1bf4547..1bb07a8 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java @@ -1608,7 +1608,7 @@ public class NotificationStackScrollLayout extends ViewGroup } @Override - protected void onViewRemoved(View child) { + public void onViewRemoved(View child) { super.onViewRemoved(child); // we only call our internal methods if this is actually a removal and not just a // notification which becomes a child notification @@ -1745,7 +1745,7 @@ public class NotificationStackScrollLayout extends ViewGroup } @Override - protected void onViewAdded(View child) { + public void onViewAdded(View child) { super.onViewAdded(child); onViewAddedInternal(child); } |