blob: 499075e1b6a1ffd0ae666aaeb57159ac09d26963 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080019import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020import android.content.Context;
Dianne Hackbornff801ec2011-01-22 18:05:38 -080021import android.content.res.Configuration;
Adam Powell8c470622011-06-30 18:19:51 -070022import android.content.res.Resources;
Jeff Browna8b9def2012-07-23 14:22:49 -070023import android.graphics.Point;
Adam Powell8c470622011-06-30 18:19:51 -070024import android.os.RemoteException;
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080025import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.util.DisplayMetrics;
27import android.util.SparseArray;
28
29/**
30 * Contains methods to standard constants used in the UI for timeouts, sizes, and distances.
31 */
32public class ViewConfiguration {
33 /**
34 * Defines the width of the horizontal scrollbar and the height of the vertical scrollbar in
Gilles Debunne006fa482011-10-27 17:23:36 -070035 * dips
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036 */
37 private static final int SCROLL_BAR_SIZE = 10;
38
39 /**
Mike Cleronf116bf82009-09-27 19:14:12 -070040 * Duration of the fade when scrollbars fade away in milliseconds
41 */
42 private static final int SCROLL_BAR_FADE_DURATION = 250;
43
44 /**
45 * Default delay before the scrollbars fade in milliseconds
46 */
47 private static final int SCROLL_BAR_DEFAULT_DELAY = 300;
48
49 /**
Gilles Debunne006fa482011-10-27 17:23:36 -070050 * Defines the length of the fading edges in dips
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 */
52 private static final int FADING_EDGE_LENGTH = 12;
53
54 /**
55 * Defines the duration in milliseconds of the pressed state in child
56 * components.
57 */
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070058 private static final int PRESSED_STATE_DURATION = 64;
59
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060 /**
Jeff Browna4547672011-03-02 21:38:11 -080061 * Defines the default duration in milliseconds before a press turns into
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 * a long press
63 */
Jeff Browna4547672011-03-02 21:38:11 -080064 private static final int DEFAULT_LONG_PRESS_TIMEOUT = 500;
65
66 /**
67 * Defines the time between successive key repeats in milliseconds.
68 */
69 private static final int KEY_REPEAT_DELAY = 50;
70
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071 /**
72 * Defines the duration in milliseconds a user needs to hold down the
73 * appropriate button to bring up the global actions dialog (power off,
74 * lock screen, etc).
75 */
76 private static final int GLOBAL_ACTIONS_KEY_TIMEOUT = 500;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070077
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080078 /**
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070079 * Defines the duration in milliseconds we will wait to see if a touch event
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080080 * is a tap or a scroll. If the user does not move within this interval, it is
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070081 * considered to be a tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080082 */
Patrick Dubroye0a799a2011-05-04 16:19:22 -070083 private static final int TAP_TIMEOUT = 180;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070084
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 /**
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070086 * Defines the duration in milliseconds we will wait to see if a touch event
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 * is a jump tap. If the user does not complete the jump tap within this interval, it is
Daisuke Miyakawac19895f2012-04-03 12:25:26 -070088 * considered to be a tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 */
90 private static final int JUMP_TAP_TIMEOUT = 500;
91
92 /**
93 * Defines the duration in milliseconds between the first tap's up event and
94 * the second tap's down event for an interaction to be considered a
95 * double-tap.
96 */
97 private static final int DOUBLE_TAP_TIMEOUT = 300;
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -070098
99 /**
100 * Defines the maximum duration in milliseconds between a touch pad
101 * touch and release for a given touch to be considered a tap (click) as
102 * opposed to a hover movement gesture.
103 */
104 private static final int HOVER_TAP_TIMEOUT = 150;
105
106 /**
107 * Defines the maximum distance in pixels that a touch pad touch can move
108 * before being released for it to be considered a tap (click) as opposed
109 * to a hover movement gesture.
110 */
111 private static final int HOVER_TAP_SLOP = 20;
112
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 /**
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700114 * Defines the duration in milliseconds we want to display zoom controls in response
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 * to a user panning within an application.
116 */
117 private static final int ZOOM_CONTROLS_TIMEOUT = 3000;
118
119 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700120 * Inset in dips to look for touchable content when the user touches the edge of the screen
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800121 */
122 private static final int EDGE_SLOP = 12;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700123
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 /**
Adam Powell7d39f852011-12-05 19:26:54 -0800125 * Distance a touch can wander before we think the user is scrolling in dips.
126 * Note that this value defined here is only used as a fallback by legacy/misbehaving
127 * applications that do not provide a Context for determining density/configuration-dependent
128 * values.
129 *
130 * To alter this value, see the configuration resource config_viewConfigurationTouchSlop
131 * in frameworks/base/core/res/res/values/config.xml or the appropriate device resource overlay.
132 * It may be appropriate to tweak this on a device-specific basis in an overlay based on
133 * the characteristics of the touch panel and firmware.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 */
Adam Powell6720a872011-12-07 17:35:32 -0800135 private static final int TOUCH_SLOP = 8;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700136
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700138 * Distance the first touch can wander before we stop considering this event a double tap
139 * (in dips)
140 */
141 private static final int DOUBLE_TAP_TOUCH_SLOP = TOUCH_SLOP;
142
143 /**
Adam Powellde8d0832010-03-09 17:11:30 -0800144 * Distance a touch can wander before we think the user is attempting a paged scroll
145 * (in dips)
Adam Powell7d39f852011-12-05 19:26:54 -0800146 *
147 * Note that this value defined here is only used as a fallback by legacy/misbehaving
148 * applications that do not provide a Context for determining density/configuration-dependent
149 * values.
150 *
151 * See the note above on {@link #TOUCH_SLOP} regarding the dimen resource
152 * config_viewConfigurationTouchSlop. ViewConfiguration will report a paging touch slop of
153 * config_viewConfigurationTouchSlop * 2 when provided with a Context.
Adam Powellde8d0832010-03-09 17:11:30 -0800154 */
Adam Powellb7ef1d92010-03-11 10:25:24 -0800155 private static final int PAGING_TOUCH_SLOP = TOUCH_SLOP * 2;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700156
Adam Powellde8d0832010-03-09 17:11:30 -0800157 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700158 * Distance in dips between the first touch and second touch to still be considered a double tap
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 */
160 private static final int DOUBLE_TAP_SLOP = 100;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700161
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700163 * Distance in dips a touch needs to be outside of a window's bounds for it to
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 * count as outside for purposes of dismissing the window.
165 */
166 private static final int WINDOW_TOUCH_SLOP = 16;
167
168 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700169 * Minimum velocity to initiate a fling, as measured in dips per second
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 */
171 private static final int MINIMUM_FLING_VELOCITY = 50;
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700172
Romain Guy4296fc42009-07-06 11:48:52 -0700173 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700174 * Maximum velocity to initiate a fling, as measured in dips per second
Romain Guy4296fc42009-07-06 11:48:52 -0700175 */
Adam Powell637d3372010-08-25 14:37:03 -0700176 private static final int MAXIMUM_FLING_VELOCITY = 8000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177
178 /**
Svetoslav Ganova0156172011-06-26 17:55:44 -0700179 * Delay before dispatching a recurring accessibility event in milliseconds.
180 * This delay guarantees that a recurring event will be send at most once
181 * during the {@link #SEND_RECURRING_ACCESSIBILITY_EVENTS_INTERVAL_MILLIS} time
182 * frame.
183 */
Svetoslav Ganove15ccb92012-05-16 15:48:55 -0700184 private static final long SEND_RECURRING_ACCESSIBILITY_EVENTS_INTERVAL_MILLIS = 100;
Svetoslav Ganova0156172011-06-26 17:55:44 -0700185
186 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800187 * The maximum size of View's drawing cache, expressed in bytes. This size
188 * should be at least equal to the size of the screen in ARGB888 format.
189 */
190 @Deprecated
Romain Guy0211a0a2011-02-14 16:34:59 -0800191 private static final int MAXIMUM_DRAWING_CACHE_SIZE = 480 * 800 * 4; // ARGB8888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192
193 /**
194 * The coefficient of friction applied to flings/scrolls.
195 */
Romain Guy0211a0a2011-02-14 16:34:59 -0800196 private static final float SCROLL_FRICTION = 0.015f;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197
Adam Powell637d3372010-08-25 14:37:03 -0700198 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700199 * Max distance in dips to overscroll for edge effects
Adam Powell637d3372010-08-25 14:37:03 -0700200 */
201 private static final int OVERSCROLL_DISTANCE = 0;
202
203 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700204 * Max distance in dips to overfling for edge effects
Adam Powell637d3372010-08-25 14:37:03 -0700205 */
Gilles Debunne8ce7aab2011-01-25 11:23:30 -0800206 private static final int OVERFLING_DISTANCE = 6;
Adam Powell637d3372010-08-25 14:37:03 -0700207
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 private final int mEdgeSlop;
209 private final int mFadingEdgeLength;
210 private final int mMinimumFlingVelocity;
Romain Guy4296fc42009-07-06 11:48:52 -0700211 private final int mMaximumFlingVelocity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 private final int mScrollbarSize;
213 private final int mTouchSlop;
Gilles Debunne006fa482011-10-27 17:23:36 -0700214 private final int mDoubleTapTouchSlop;
Adam Powellde8d0832010-03-09 17:11:30 -0800215 private final int mPagingTouchSlop;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800216 private final int mDoubleTapSlop;
217 private final int mWindowTouchSlop;
218 private final int mMaximumDrawingCacheSize;
Adam Powell637d3372010-08-25 14:37:03 -0700219 private final int mOverscrollDistance;
220 private final int mOverflingDistance;
Romain Guy68055452011-08-02 16:33:02 -0700221 private final boolean mFadingMarqueeEnabled;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222
Adam Powell8c470622011-06-30 18:19:51 -0700223 private boolean sHasPermanentMenuKey;
224 private boolean sHasPermanentMenuKeySet;
225
Xavier Ducrohet7f9f99ea2011-08-11 10:16:17 -0700226 static final SparseArray<ViewConfiguration> sConfigurations =
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800227 new SparseArray<ViewConfiguration>(2);
228
229 /**
230 * @deprecated Use {@link android.view.ViewConfiguration#get(android.content.Context)} instead.
231 */
232 @Deprecated
233 public ViewConfiguration() {
234 mEdgeSlop = EDGE_SLOP;
235 mFadingEdgeLength = FADING_EDGE_LENGTH;
236 mMinimumFlingVelocity = MINIMUM_FLING_VELOCITY;
Romain Guy4296fc42009-07-06 11:48:52 -0700237 mMaximumFlingVelocity = MAXIMUM_FLING_VELOCITY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800238 mScrollbarSize = SCROLL_BAR_SIZE;
239 mTouchSlop = TOUCH_SLOP;
Gilles Debunne006fa482011-10-27 17:23:36 -0700240 mDoubleTapTouchSlop = DOUBLE_TAP_TOUCH_SLOP;
Adam Powellde8d0832010-03-09 17:11:30 -0800241 mPagingTouchSlop = PAGING_TOUCH_SLOP;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800242 mDoubleTapSlop = DOUBLE_TAP_SLOP;
243 mWindowTouchSlop = WINDOW_TOUCH_SLOP;
244 //noinspection deprecation
245 mMaximumDrawingCacheSize = MAXIMUM_DRAWING_CACHE_SIZE;
Adam Powell637d3372010-08-25 14:37:03 -0700246 mOverscrollDistance = OVERSCROLL_DISTANCE;
247 mOverflingDistance = OVERFLING_DISTANCE;
Romain Guy68055452011-08-02 16:33:02 -0700248 mFadingMarqueeEnabled = true;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 }
250
251 /**
252 * Creates a new configuration for the specified context. The configuration depends on
253 * various parameters of the context, like the dimension of the display or the density
254 * of the display.
255 *
256 * @param context The application context used to initialize this view configuration.
257 *
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700258 * @see #get(android.content.Context)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800259 * @see android.util.DisplayMetrics
260 */
261 private ViewConfiguration(Context context) {
Adam Powell8c470622011-06-30 18:19:51 -0700262 final Resources res = context.getResources();
263 final DisplayMetrics metrics = res.getDisplayMetrics();
264 final Configuration config = res.getConfiguration();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265 final float density = metrics.density;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800266 final float sizeAndDensity;
Adam Powell8c470622011-06-30 18:19:51 -0700267 if (config.isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_XLARGE)) {
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800268 sizeAndDensity = density * 1.5f;
269 } else {
270 sizeAndDensity = density;
271 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800273 mEdgeSlop = (int) (sizeAndDensity * EDGE_SLOP + 0.5f);
274 mFadingEdgeLength = (int) (sizeAndDensity * FADING_EDGE_LENGTH + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 mMinimumFlingVelocity = (int) (density * MINIMUM_FLING_VELOCITY + 0.5f);
Romain Guy4296fc42009-07-06 11:48:52 -0700276 mMaximumFlingVelocity = (int) (density * MAXIMUM_FLING_VELOCITY + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 mScrollbarSize = (int) (density * SCROLL_BAR_SIZE + 0.5f);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800278 mDoubleTapSlop = (int) (sizeAndDensity * DOUBLE_TAP_SLOP + 0.5f);
279 mWindowTouchSlop = (int) (sizeAndDensity * WINDOW_TOUCH_SLOP + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800280
281 // Size of the screen in bytes, in ARGB_8888 format
Jeff Brown98365d72012-08-19 20:30:52 -0700282 final WindowManager win = (WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
283 final Display display = win.getDefaultDisplay();
Jeff Browna8b9def2012-07-23 14:22:49 -0700284 final Point size = new Point();
285 display.getRealSize(size);
286 mMaximumDrawingCacheSize = 4 * size.x * size.y;
Adam Powell637d3372010-08-25 14:37:03 -0700287
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800288 mOverscrollDistance = (int) (sizeAndDensity * OVERSCROLL_DISTANCE + 0.5f);
289 mOverflingDistance = (int) (sizeAndDensity * OVERFLING_DISTANCE + 0.5f);
Adam Powell8c470622011-06-30 18:19:51 -0700290
291 if (!sHasPermanentMenuKeySet) {
Jeff Brown98365d72012-08-19 20:30:52 -0700292 IWindowManager wm = WindowManagerGlobal.getWindowManagerService();
Adam Powell8c470622011-06-30 18:19:51 -0700293 try {
Dianne Hackbornf87d1962012-04-04 12:48:24 -0700294 sHasPermanentMenuKey = !wm.hasSystemNavBar() && !wm.hasNavigationBar();
Adam Powell8c470622011-06-30 18:19:51 -0700295 sHasPermanentMenuKeySet = true;
296 } catch (RemoteException ex) {
297 sHasPermanentMenuKey = false;
298 }
299 }
Romain Guy68055452011-08-02 16:33:02 -0700300
301 mFadingMarqueeEnabled = res.getBoolean(
302 com.android.internal.R.bool.config_ui_enableFadingMarquee);
Adam Powell7d39f852011-12-05 19:26:54 -0800303 mTouchSlop = res.getDimensionPixelSize(
304 com.android.internal.R.dimen.config_viewConfigurationTouchSlop);
305 mPagingTouchSlop = mTouchSlop * 2;
Adam Powelle4b8ff82011-12-06 16:40:49 -0800306
307 mDoubleTapTouchSlop = mTouchSlop;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800308 }
309
310 /**
311 * Returns a configuration for the specified context. The configuration depends on
312 * various parameters of the context, like the dimension of the display or the
313 * density of the display.
314 *
315 * @param context The application context used to initialize the view configuration.
316 */
317 public static ViewConfiguration get(Context context) {
318 final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
319 final int density = (int) (100.0f * metrics.density);
320
321 ViewConfiguration configuration = sConfigurations.get(density);
322 if (configuration == null) {
323 configuration = new ViewConfiguration(context);
324 sConfigurations.put(density, configuration);
325 }
326
327 return configuration;
328 }
329
330 /**
331 * @return The width of the horizontal scrollbar and the height of the vertical
Gilles Debunne006fa482011-10-27 17:23:36 -0700332 * scrollbar in dips
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 *
334 * @deprecated Use {@link #getScaledScrollBarSize()} instead.
335 */
336 @Deprecated
337 public static int getScrollBarSize() {
338 return SCROLL_BAR_SIZE;
339 }
340
341 /**
342 * @return The width of the horizontal scrollbar and the height of the vertical
343 * scrollbar in pixels
344 */
345 public int getScaledScrollBarSize() {
346 return mScrollbarSize;
347 }
348
349 /**
Mike Cleronf116bf82009-09-27 19:14:12 -0700350 * @return Duration of the fade when scrollbars fade away in milliseconds
351 */
352 public static int getScrollBarFadeDuration() {
353 return SCROLL_BAR_FADE_DURATION;
354 }
355
356 /**
357 * @return Default delay before the scrollbars fade in milliseconds
358 */
359 public static int getScrollDefaultDelay() {
360 return SCROLL_BAR_DEFAULT_DELAY;
361 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700362
Mike Cleronf116bf82009-09-27 19:14:12 -0700363 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700364 * @return the length of the fading edges in dips
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 *
366 * @deprecated Use {@link #getScaledFadingEdgeLength()} instead.
367 */
368 @Deprecated
369 public static int getFadingEdgeLength() {
370 return FADING_EDGE_LENGTH;
371 }
372
373 /**
374 * @return the length of the fading edges in pixels
375 */
376 public int getScaledFadingEdgeLength() {
377 return mFadingEdgeLength;
378 }
379
380 /**
381 * @return the duration in milliseconds of the pressed state in child
382 * components.
383 */
384 public static int getPressedStateDuration() {
385 return PRESSED_STATE_DURATION;
386 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800387
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 /**
389 * @return the duration in milliseconds before a press turns into
390 * a long press
391 */
392 public static int getLongPressTimeout() {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800393 return AppGlobals.getIntCoreSetting(Settings.Secure.LONG_PRESS_TIMEOUT,
Jeff Browna4547672011-03-02 21:38:11 -0800394 DEFAULT_LONG_PRESS_TIMEOUT);
395 }
396
397 /**
398 * @return the time before the first key repeat in milliseconds.
399 */
400 public static int getKeyRepeatTimeout() {
401 return getLongPressTimeout();
402 }
403
404 /**
405 * @return the time between successive key repeats in milliseconds.
406 */
407 public static int getKeyRepeatDelay() {
408 return KEY_REPEAT_DELAY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800409 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800410
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 /**
412 * @return the duration in milliseconds we will wait to see if a touch event
413 * is a tap or a scroll. If the user does not move within this interval, it is
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700414 * considered to be a tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800415 */
416 public static int getTapTimeout() {
417 return TAP_TIMEOUT;
418 }
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700419
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420 /**
421 * @return the duration in milliseconds we will wait to see if a touch event
422 * is a jump tap. If the user does not move within this interval, it is
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700423 * considered to be a tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 */
425 public static int getJumpTapTimeout() {
426 return JUMP_TAP_TIMEOUT;
427 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700428
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 /**
430 * @return the duration in milliseconds between the first tap's up event and
431 * the second tap's down event for an interaction to be considered a
432 * double-tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 */
434 public static int getDoubleTapTimeout() {
435 return DOUBLE_TAP_TIMEOUT;
436 }
Jeff Brownbb3fcba0c2011-06-06 19:23:05 -0700437
438 /**
439 * @return the maximum duration in milliseconds between a touch pad
440 * touch and release for a given touch to be considered a tap (click) as
441 * opposed to a hover movement gesture.
442 * @hide
443 */
444 public static int getHoverTapTimeout() {
445 return HOVER_TAP_TIMEOUT;
446 }
447
448 /**
449 * @return the maximum distance in pixels that a touch pad touch can move
450 * before being released for it to be considered a tap (click) as opposed
451 * to a hover movement gesture.
452 * @hide
453 */
454 public static int getHoverTapSlop() {
455 return HOVER_TAP_SLOP;
456 }
457
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800458 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700459 * @return Inset in dips to look for touchable content when the user touches the edge of the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 * screen
461 *
462 * @deprecated Use {@link #getScaledEdgeSlop()} instead.
463 */
464 @Deprecated
465 public static int getEdgeSlop() {
466 return EDGE_SLOP;
467 }
468
469 /**
470 * @return Inset in pixels to look for touchable content when the user touches the edge of the
471 * screen
472 */
473 public int getScaledEdgeSlop() {
474 return mEdgeSlop;
475 }
476
477 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700478 * @return Distance in dips a touch can wander before we think the user is scrolling
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800479 *
480 * @deprecated Use {@link #getScaledTouchSlop()} instead.
481 */
482 @Deprecated
483 public static int getTouchSlop() {
484 return TOUCH_SLOP;
485 }
486
487 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700488 * @return Distance in pixels a touch can wander before we think the user is scrolling
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800489 */
490 public int getScaledTouchSlop() {
491 return mTouchSlop;
492 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700493
Adam Powellde8d0832010-03-09 17:11:30 -0800494 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700495 * @return Distance in pixels the first touch can wander before we do not consider this a
496 * potential double tap event
497 * @hide
498 */
499 public int getScaledDoubleTapTouchSlop() {
500 return mDoubleTapTouchSlop;
501 }
502
503 /**
504 * @return Distance in pixels a touch can wander before we think the user is scrolling a full
505 * page
Adam Powellde8d0832010-03-09 17:11:30 -0800506 */
507 public int getScaledPagingTouchSlop() {
508 return mPagingTouchSlop;
509 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800510
511 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700512 * @return Distance in dips between the first touch and second touch to still be
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800513 * considered a double tap
514 * @deprecated Use {@link #getScaledDoubleTapSlop()} instead.
515 * @hide The only client of this should be GestureDetector, which needs this
516 * for clients that still use its deprecated constructor.
517 */
518 @Deprecated
519 public static int getDoubleTapSlop() {
520 return DOUBLE_TAP_SLOP;
521 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700522
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800523 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700524 * @return Distance in pixels between the first touch and second touch to still be
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800525 * considered a double tap
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800526 */
527 public int getScaledDoubleTapSlop() {
528 return mDoubleTapSlop;
529 }
530
531 /**
Svetoslav Ganova0156172011-06-26 17:55:44 -0700532 * Interval for dispatching a recurring accessibility event in milliseconds.
533 * This interval guarantees that a recurring event will be send at most once
534 * during the {@link #getSendRecurringAccessibilityEventsInterval()} time frame.
535 *
536 * @return The delay in milliseconds.
537 *
538 * @hide
539 */
540 public static long getSendRecurringAccessibilityEventsInterval() {
541 return SEND_RECURRING_ACCESSIBILITY_EVENTS_INTERVAL_MILLIS;
542 }
543
544 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700545 * @return Distance in dips a touch must be outside the bounds of a window for it
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800546 * to be counted as outside the window for purposes of dismissing that
547 * window.
548 *
549 * @deprecated Use {@link #getScaledWindowTouchSlop()} instead.
550 */
551 @Deprecated
552 public static int getWindowTouchSlop() {
553 return WINDOW_TOUCH_SLOP;
554 }
555
556 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700557 * @return Distance in pixels a touch must be outside the bounds of a window for it
558 * to be counted as outside the window for purposes of dismissing that window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800559 */
560 public int getScaledWindowTouchSlop() {
561 return mWindowTouchSlop;
562 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700563
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800564 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700565 * @return Minimum velocity to initiate a fling, as measured in dips per second.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800566 *
567 * @deprecated Use {@link #getScaledMinimumFlingVelocity()} instead.
568 */
569 @Deprecated
570 public static int getMinimumFlingVelocity() {
571 return MINIMUM_FLING_VELOCITY;
572 }
573
574 /**
575 * @return Minimum velocity to initiate a fling, as measured in pixels per second.
576 */
577 public int getScaledMinimumFlingVelocity() {
578 return mMinimumFlingVelocity;
579 }
580
581 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700582 * @return Maximum velocity to initiate a fling, as measured in dips per second.
Romain Guy4296fc42009-07-06 11:48:52 -0700583 *
584 * @deprecated Use {@link #getScaledMaximumFlingVelocity()} instead.
585 */
586 @Deprecated
587 public static int getMaximumFlingVelocity() {
588 return MAXIMUM_FLING_VELOCITY;
589 }
590
591 /**
592 * @return Maximum velocity to initiate a fling, as measured in pixels per second.
593 */
594 public int getScaledMaximumFlingVelocity() {
595 return mMaximumFlingVelocity;
596 }
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700597
Romain Guy4296fc42009-07-06 11:48:52 -0700598 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800599 * The maximum drawing cache size expressed in bytes.
600 *
601 * @return the maximum size of View's drawing cache expressed in bytes
602 *
603 * @deprecated Use {@link #getScaledMaximumDrawingCacheSize()} instead.
604 */
605 @Deprecated
606 public static int getMaximumDrawingCacheSize() {
607 //noinspection deprecation
608 return MAXIMUM_DRAWING_CACHE_SIZE;
609 }
610
611 /**
612 * The maximum drawing cache size expressed in bytes.
613 *
614 * @return the maximum size of View's drawing cache expressed in bytes
615 */
616 public int getScaledMaximumDrawingCacheSize() {
617 return mMaximumDrawingCacheSize;
618 }
619
620 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700621 * @return The maximum distance a View should overscroll by when showing edge effects (in
622 * pixels).
Adam Powell637d3372010-08-25 14:37:03 -0700623 */
624 public int getScaledOverscrollDistance() {
625 return mOverscrollDistance;
626 }
627
628 /**
Gilles Debunne006fa482011-10-27 17:23:36 -0700629 * @return The maximum distance a View should overfling by when showing edge effects (in
630 * pixels).
Adam Powell637d3372010-08-25 14:37:03 -0700631 */
632 public int getScaledOverflingDistance() {
633 return mOverflingDistance;
634 }
635
636 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 * The amount of time that the zoom controls should be
638 * displayed on the screen expressed in milliseconds.
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700639 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 * @return the time the zoom controls should be visible expressed
641 * in milliseconds.
642 */
643 public static long getZoomControlsTimeout() {
644 return ZOOM_CONTROLS_TIMEOUT;
645 }
646
647 /**
648 * The amount of time a user needs to press the relevant key to bring up
649 * the global actions dialog.
650 *
651 * @return how long a user needs to press the relevant key to bring up
652 * the global actions dialog.
653 */
654 public static long getGlobalActionKeyTimeout() {
655 return GLOBAL_ACTIONS_KEY_TIMEOUT;
656 }
657
658 /**
659 * The amount of friction applied to scrolls and flings.
Daisuke Miyakawac19895f2012-04-03 12:25:26 -0700660 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800661 * @return A scalar dimensionless value representing the coefficient of
662 * friction.
663 */
664 public static float getScrollFriction() {
665 return SCROLL_FRICTION;
666 }
Adam Powell8c470622011-06-30 18:19:51 -0700667
668 /**
669 * Report if the device has a permanent menu key available to the user.
670 *
671 * <p>As of Android 3.0, devices may not have a permanent menu key available.
672 * Apps should use the action bar to present menu options to users.
673 * However, there are some apps where the action bar is inappropriate
674 * or undesirable. This method may be used to detect if a menu key is present.
675 * If not, applications should provide another on-screen affordance to access
676 * functionality.
677 *
678 * @return true if a permanent menu key is present, false otherwise.
679 */
680 public boolean hasPermanentMenuKey() {
681 return sHasPermanentMenuKey;
682 }
Romain Guy68055452011-08-02 16:33:02 -0700683
684 /**
685 * @hide
686 * @return Whether or not marquee should use fading edges.
687 */
688 public boolean isFadingMarqueeEnabled() {
689 return mFadingMarqueeEnabled;
690 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800691}