summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar
diff options
context:
space:
mode:
authorChristoph Studer <chstuder@google.com>2014-10-31 14:55:29 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-31 14:55:31 +0000
commit104078c8ba7504376f77ab7ea7f183d2250d323d (patch)
tree2e856fe8488cf92ab5d9326a61d6d87175640b6f /packages/SystemUI/src/com/android/systemui/statusbar
parente6cd9daff42dc512e7abfceaf6a38b60dbe3ef97 (diff)
parent12cf9e5159ee19e2335e436241a7bc6d5eb10bee (diff)
downloadframeworks_base-104078c8ba7504376f77ab7ea7f183d2250d323d.zip
frameworks_base-104078c8ba7504376f77ab7ea7f183d2250d323d.tar.gz
frameworks_base-104078c8ba7504376f77ab7ea7f183d2250d323d.tar.bz2
Merge "SysUI: Never log GONE notifications as visible" into lmp-mr1-dev
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/statusbar')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java3
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java2
2 files changed, 5 insertions, 0 deletions
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 026c2f3..4611370 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java
@@ -234,6 +234,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;