diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-09-25 01:34:28 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2009-09-25 01:34:28 -0700 |
| commit | 3e2ac8843489e83c4171aabcfe98769b5159a5c8 (patch) | |
| tree | 759b4f1c2d2854b2b437932efa0f1024b114227e /core/java/android/view/ViewConfiguration.java | |
| parent | 896b15abea4e1c0ee98330964474672a7316ee50 (diff) | |
Fix/improve issue #2142662: too easy to click a link/item instead of fling
Reduce the slop.
Change-Id: If255e68cc8092e7f746a91c0fea27abfc5292b73
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 0e36ec296d9c..377646332c97 100644 --- a/core/java/android/view/ViewConfiguration.java +++ b/core/java/android/view/ViewConfiguration.java @@ -89,7 +89,7 @@ public class ViewConfiguration { /** * Distance a touch can wander before we think the user is scrolling in pixels */ - private static final int TOUCH_SLOP = 25; + private static final int TOUCH_SLOP = 16; /** * Distance between the first touch and second touch to still be considered a double tap |
