From b5a83613fe935cc60106746d311bab2acbce37fa Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Fri, 11 Dec 2015 14:14:39 -0800 Subject: [PATCH] Fixed a bug where the notification header was above the guts Change-Id: I1b32ea229bd7a7b2c6b9f572ea71167334ba8a1c --- .../src/com/android/systemui/statusbar/ExpandableNotificationRow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.11.0