summaryrefslogtreecommitdiffstats
path: root/core/java/android/app
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2013-10-28 18:40:56 -0400
committerJohn Spurlock <jspurlock@google.com>2013-11-01 11:33:48 -0400
commit56d007b99841f7f603e5d5bc5c23b94c010f1945 (patch)
treef9b18f6e733f35d112130289d29d659c5d98c68b /core/java/android/app
parente6411e681018289c58ae6f622c11db7c800de962 (diff)
downloadframeworks_base-56d007b99841f7f603e5d5bc5c23b94c010f1945.zip
frameworks_base-56d007b99841f7f603e5d5bc5c23b94c010f1945.tar.gz
frameworks_base-56d007b99841f7f603e5d5bc5c23b94c010f1945.tar.bz2
Manage keyguard nav elements using transitions.
Move the logic for managing dimming the navigation bar elements on the lockscreen into BarTransitions. Replace search light + camera assets with new versions at full brightness, and apply 50% dimming at runtime, including the IME dismiss button. Remove unused StatusBarManager _NOP hints. Improve choreography between camera button + password security (w/ IME). Fix a few found bugs in PagedView. Improve password security unlock transition, manually fade in back along with the rest of the icons. Bug:11221659 Change-Id: Ifd1f8c9f400d90542f0ca858b9a4deacabbd518a
Diffstat (limited to 'core/java/android/app')
-rw-r--r--core/java/android/app/StatusBarManager.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/java/android/app/StatusBarManager.java b/core/java/android/app/StatusBarManager.java
index 7bcf43e..2045ed8 100644
--- a/core/java/android/app/StatusBarManager.java
+++ b/core/java/android/app/StatusBarManager.java
@@ -58,10 +58,7 @@ public class StatusBarManager {
| DISABLE_SYSTEM_INFO | DISABLE_RECENT | DISABLE_HOME | DISABLE_BACK | DISABLE_CLOCK
| DISABLE_SEARCH;
- public static final int NAVIGATION_HINT_BACK_NOP = 1 << 0;
- public static final int NAVIGATION_HINT_HOME_NOP = 1 << 1;
- public static final int NAVIGATION_HINT_RECENT_NOP = 1 << 2;
- public static final int NAVIGATION_HINT_BACK_ALT = 1 << 3;
+ public static final int NAVIGATION_HINT_BACK_ALT = 1 << 0;
public static final int WINDOW_STATUS_BAR = 1;
public static final int WINDOW_NAVIGATION_BAR = 2;