From 6e28a678c7f9fe2cae5a51bfdbab3071a2d8d0ba Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Fri, 5 Sep 2014 14:43:28 +0200 Subject: [PATCH] Fixed a bug where the notifications could overlap when reset This is because we did not receive a layout request even though the notification was updated. Bug: 17357688 Change-Id: Ie6295d07f4c00ec014b17671ad646261c4bb7e0f --- .../android/systemui/statusbar/ExpandableNotificationRow.java | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java index e3a0b1855f0dc..c13593a204d7b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java @@ -147,6 +147,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView { mMaxExpandHeight = 0; mWasReset = true; onHeightReset(); + requestLayout(); } @Override