summaryrefslogtreecommitdiffstats
path: root/policy/src
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@android.com>2011-08-12 14:49:36 -0400
committerDaniel Sandler <dsandler@android.com>2011-08-12 14:49:36 -0400
commit8b08b88640e1f847d4890399f236b434b08921c0 (patch)
treea00a98b11b2ae4cfe81a52d1e8ad71af945dfcf3 /policy/src
parentd5962a128ac6e0a71137fc18670745991647c645 (diff)
downloadframeworks_base-8b08b88640e1f847d4890399f236b434b08921c0.zip
frameworks_base-8b08b88640e1f847d4890399f236b434b08921c0.tar.gz
frameworks_base-8b08b88640e1f847d4890399f236b434b08921c0.tar.bz2
Properly disable status bar on secure lockscreens.
(Broken implementation appeared in change I967e455.) Bug: 5158885 Change-Id: I0e22c269ff76d19bcdd5e51e1722e34fdc025dfa
Diffstat (limited to 'policy/src')
-rw-r--r--policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java b/policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java
index 4abb9eb..06b7fb9 100644
--- a/policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java
+++ b/policy/src/com/android/internal/policy/impl/KeyguardViewMediator.java
@@ -1138,12 +1138,13 @@ public class KeyguardViewMediator implements KeyguardViewCallback,
}
}
- // if the keyguard is shown, allow the status bar to open
- // only if the keyguard is insecure and is covered by another window
- boolean enable = !mShowing || (mHidden && !isSecure());
+ // if the keyguard is shown, allow the status bar to open only if the keyguard is
+ // insecure and (is covered by another window OR this feature is enabled in general)
+ boolean enable = !mShowing
+ || ((ENABLE_STATUS_BAR_IN_KEYGUARD || mHidden) && !isSecure());
mStatusBarManager.disable(enable ?
StatusBarManager.DISABLE_NONE :
- ( (ENABLE_STATUS_BAR_IN_KEYGUARD ? 0 : StatusBarManager.DISABLE_EXPAND)
+ ( StatusBarManager.DISABLE_EXPAND
| StatusBarManager.DISABLE_NAVIGATION
| StatusBarManager.DISABLE_CLOCK));
}