diff options
author | Christoph Studer <chstuder@google.com> | 2014-10-31 14:55:29 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-10-31 14:55:31 +0000 |
commit | 104078c8ba7504376f77ab7ea7f183d2250d323d (patch) | |
tree | 2e856fe8488cf92ab5d9326a61d6d87175640b6f /packages/SystemUI/src/com/android/systemui/statusbar | |
parent | e6cd9daff42dc512e7abfceaf6a38b60dbe3ef97 (diff) | |
parent | 12cf9e5159ee19e2335e436241a7bc6d5eb10bee (diff) | |
download | frameworks_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.java | 3 | ||||
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/StackScrollState.java | 2 |
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; |