diff options
| author | Patrick Dubroy <dubroy@google.com> | 2011-05-04 16:19:22 -0700 |
|---|---|---|
| committer | Patrick Dubroy <dubroy@google.com> | 2011-05-05 14:49:20 -0700 |
| commit | e0a799a2ac1ca78e30fbac9e4e12a063425c08d3 (patch) | |
| tree | 2c9b15f937b7c3b3db2bba4cf3df5a54838bbe69 /core/java/android/view/ViewConfiguration.java | |
| parent | a0449f03eb12462189f7a75f55e4751e1e2bcbcd (diff) | |
Only delay pressed feedback for Views inside a scrolling parent
Add a method on ViewGroup to determine whether it supports scrolling.
This allows us to show the pressed feedback immediately in many cases,
improving responsiveness of buttons, etc.
This patch also lengthens the timeout in order to reduce flashes
when the user is scrolling.
Change-Id: Ieb91ae7a1f8e8f7e87448f2a730381a53947996f
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 94eb429dad64..36bb046c0f68 100644 --- a/core/java/android/view/ViewConfiguration.java +++ b/core/java/android/view/ViewConfiguration.java @@ -95,7 +95,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 = 115; + private static final int TAP_TIMEOUT = 180; /** * Defines the duration in milliseconds we will wait to see if a touch event |
