summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Mast <andy@cyngn.com>2015-07-01 09:52:24 -0700
committerAndy Mast <andy@cyngn.com>2015-07-12 19:01:28 -0700
commit0896a7091c0560f5ecafe214c122e0cfc449b415 (patch)
tree69499d6bc983de4c50609bb416cdad4f15db79db
parentc2eac5e76921f71d084d34d25f70738041484b04 (diff)
downloadandroid_frameworks_base-0896a7091c0560f5ecafe214c122e0cfc449b415.tar.gz
android_frameworks_base-0896a7091c0560f5ecafe214c122e0cfc449b415.tar.bz2
android_frameworks_base-0896a7091c0560f5ecafe214c122e0cfc449b415.zip
Keyguard: Increase time to show hint texts
Too short with current time. UX wants the messages to last longer. Change-Id: I8e2fb8f182f99b78ff8510ea2275bc4c9fac134c
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
index f42dfd3275e..cce3c7c0ac2 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -254,7 +254,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
/**
* The delay to reset the hint text when the hint animation is finished running.
*/
- private static final int HINT_RESET_DELAY_MS = 1200;
+ private static final int HINT_RESET_DELAY_MS = 4000;
private static final AudioAttributes VIBRATION_ATTRIBUTES = new AudioAttributes.Builder()
.setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)