summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Selim Cinek <cinek@google.com> 2015-12-11 14:14:39 -0800
committer Selim Cinek <cinek@google.com> 2015-12-11 14:54:04 -0800
commitb5a83613fe935cc60106746d311bab2acbce37fa (patch)
tree7ad99d9da17d21fa8572ea7cd01f44d0a2812390
parent471e31aa9bee64abc189fcc3518292a004960d2f (diff)
Fixed a bug where the notification header was above the guts
Change-Id: I1b32ea229bd7a7b2c6b9f572ea71167334ba8a1c
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
index bd143ac31fca..ed4c7742a01d 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/ExpandableNotificationRow.java
@@ -991,7 +991,7 @@ public class ExpandableNotificationRow extends ActivatableNotificationView {
mNotificationHeader.setOnClickListener(mExpandClickListener);
mNotificationHeaderWrapper = NotificationViewWrapper.wrap(getContext(),
mNotificationHeader);
- addView(mNotificationHeader);
+ addView(mNotificationHeader, indexOfChild(mChildrenContainer) + 1);
} else {
header.reapply(getContext(), mNotificationHeader);
mNotificationHeaderWrapper.notifyContentUpdated();