diff options
author | Alan Viverette <alanv@google.com> | 2014-03-17 15:33:05 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-03-17 16:16:33 -0700 |
commit | 97d9b65470957ce4c9983921bd59c4cf902885ce (patch) | |
tree | 4b520236d7901eb7def30626e494662d1b9c6875 /core/java/android/view/ViewConfiguration.java | |
parent | 33e3e1b9203d4cb3f44c41f38ea401d101e92af2 (diff) | |
download | frameworks_base-97d9b65470957ce4c9983921bd59c4cf902885ce.zip frameworks_base-97d9b65470957ce4c9983921bd59c4cf902885ce.tar.gz frameworks_base-97d9b65470957ce4c9983921bd59c4cf902885ce.tar.bz2 |
Lower tap timeout to 100ms, because 180ms is a lot of ms
Change-Id: I708848480544825474785e0918feba70c1089090
Diffstat (limited to 'core/java/android/view/ViewConfiguration.java')
-rw-r--r-- | core/java/android/view/ViewConfiguration.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/view/ViewConfiguration.java b/core/java/android/view/ViewConfiguration.java index e67659c..5112b9a 100644 --- a/core/java/android/view/ViewConfiguration.java +++ b/core/java/android/view/ViewConfiguration.java @@ -80,7 +80,7 @@ public class ViewConfiguration { * is a tap or a scroll. If the user does not move within this interval, it is * considered to be a tap. */ - private static final int TAP_TIMEOUT = 180; + private static final int TAP_TIMEOUT = 100; /** * Defines the duration in milliseconds we will wait to see if a touch event |