From 12cf9e5159ee19e2335e436241a7bc6d5eb10bee Mon Sep 17 00:00:00 2001 From: Christoph Studer Date: Wed, 29 Oct 2014 17:35:30 +0100 Subject: SysUI: Never log GONE notifications as visible Bug: 18170453 Change-Id: I58a3990b481889fe4a1370e1eaa88058df53079d --- .../systemui/statusbar/stack/NotificationStackScrollLayout.java | 3 +++ .../src/com/android/systemui/statusbar/stack/StackScrollState.java | 2 ++ 2 files changed, 5 insertions(+) (limited to 'packages/SystemUI/src/com/android/systemui/statusbar/stack') 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 4a20406..dd178cd 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java @@ -367,6 +367,9 @@ public class NotificationStackScrollLayout extends ViewGroup if (childViewState == null) { return ViewState.LOCATION_UNKNOWN; } + if (childViewState.gone) { + return ViewState.LOCATION_GONE; + } return childViewState.location; } diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java index 0967ecd..09cd335 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java @@ -236,6 +236,8 @@ public class StackScrollState { public static final int LOCATION_MAIN_AREA = 0x08; public static final int LOCATION_BOTTOM_STACK_PEEKING = 0x10; public static final int LOCATION_BOTTOM_STACK_HIDDEN = 0x20; + /** The view isn't layouted at all. */ + public static final int LOCATION_GONE = 0x40; float alpha; float yTranslation; -- cgit v1.1