diff options
author | Adrian Roos <roosa@google.com> | 2014-05-27 15:37:37 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-27 15:37:38 +0000 |
commit | a33ea18dc6fc6f4f4978aff57f7d6a0d0feb93d4 (patch) | |
tree | a2bb78617376c66e6a7bd2ac2fcc393676713d58 /packages | |
parent | fc9e1e059213f067753da8d356edac82e277c466 (diff) | |
parent | bcbb75ac9d73a92632e97ab990a913ede755b176 (diff) | |
download | frameworks_base-a33ea18dc6fc6f4f4978aff57f7d6a0d0feb93d4.zip frameworks_base-a33ea18dc6fc6f4f4978aff57f7d6a0d0feb93d4.tar.gz frameworks_base-a33ea18dc6fc6f4f4978aff57f7d6a0d0feb93d4.tar.bz2 |
Merge "Initialize background visibility of ActivatableNotificationView" into lmp-preview-dev
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java b/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java index e3dac4a..dcd187c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/ActivatableNotificationView.java @@ -149,6 +149,7 @@ public abstract class ActivatableNotificationView extends ExpandableOutlineView super.onFinishInflate(); mBackgroundNormal = (NotificationBackgroundView) findViewById(R.id.backgroundNormal); mBackgroundDimmed = (NotificationBackgroundView) findViewById(R.id.backgroundDimmed); + updateBackground(); updateBackgroundResources(); } |