From b7ef1d9ec9aa09ecba5a348c939b10f798aff131 Mon Sep 17 00:00:00 2001 From: Adam Powell Date: Thu, 11 Mar 2010 10:25:24 -0800 Subject: [PATCH] Make paging touch slop smaller Change-Id: I36e2623dcc6e3209de51d32841ca68ce322cc5d8 --- core/java/android/view/ViewConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/view/ViewConfiguration.java b/core/java/android/view/ViewConfiguration.java index 2b78d2d31cb75..acdfc2829da97 100644 --- a/core/java/android/view/ViewConfiguration.java +++ b/core/java/android/view/ViewConfiguration.java @@ -105,7 +105,7 @@ public class ViewConfiguration { * Distance a touch can wander before we think the user is attempting a paged scroll * (in dips) */ - private static final int PAGING_TOUCH_SLOP = TOUCH_SLOP * 3; + private static final int PAGING_TOUCH_SLOP = TOUCH_SLOP * 2; /** * Distance between the first touch and second touch to still be considered a double tap