OSDN Git Service

Use platform delay for assist long press gesture
authorJorim Jaggi <jjaggi@google.com>
Wed, 13 May 2015 21:17:16 +0000 (14:17 -0700)
committerJorim Jaggi <jjaggi@google.com>
Wed, 13 May 2015 21:17:16 +0000 (14:17 -0700)
Bug: 20853645
Change-Id: I1f25a04bfc7d07077211743b9d258fd637a402e6

packages/SystemUI/res/values/config.xml
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

index 6e79423..354e99d 100644 (file)
@@ -69,9 +69,6 @@
     <!-- Show rotation lock toggle in System UI-->
     <bool name="config_showRotationLock">true</bool>
 
-    <!-- Amount of time to hold off before showing the search panel when the user presses home -->
-    <integer name="config_show_search_delay">200</integer>
-
     <!-- Vibration duration for GlowPadView used in SearchPanelView -->
     <integer translatable="false" name="config_vibration_duration">0</integer>
 
index f983f58..887b8f4 100644 (file)
@@ -79,6 +79,7 @@ import android.view.MotionEvent;
 import android.view.ThreadedRenderer;
 import android.view.VelocityTracker;
 import android.view.View;
+import android.view.ViewConfiguration;
 import android.view.ViewGroup.LayoutParams;
 import android.view.ViewStub;
 import android.view.WindowManager;
@@ -1197,8 +1198,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
     }
 
     private void updateShowSearchHoldoff() {
-        mShowSearchHoldoff = mContext.getResources().getInteger(
-            R.integer.config_show_search_delay);
+        mShowSearchHoldoff = ViewConfiguration.getLongPressTimeout();
     }
 
     private void updateNotificationShade() {