blob: 36bb046c0f685b559970a7d8b475dc8d8eee6abb [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;
Svetoslav Ganov54d068e2011-03-02 12:58:40 -080022import android.provider.Settings;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.util.DisplayMetrics;
24import android.util.SparseArray;
25
26/**
27 * Contains methods to standard constants used in the UI for timeouts, sizes, and distances.
28 */
29public class ViewConfiguration {
30 /**
Romain Guydbc26d22010-10-11 17:58:29 -070031 * Expected bit depth of the display panel.
32 *
33 * @hide
34 */
35 public static final float PANEL_BIT_DEPTH = 24;
36
37 /**
38 * Minimum alpha required for a view to draw.
39 *
40 * @hide
41 */
42 public static final float ALPHA_THRESHOLD = 0.5f / PANEL_BIT_DEPTH;
Romain Guy909cbaf2010-10-13 18:19:48 -070043 /**
44 * @hide
45 */
46 public static final float ALPHA_THRESHOLD_INT = 0x7f / PANEL_BIT_DEPTH;
47
Romain Guydbc26d22010-10-11 17:58:29 -070048 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049 * Defines the width of the horizontal scrollbar and the height of the vertical scrollbar in
50 * pixels
51 */
52 private static final int SCROLL_BAR_SIZE = 10;
53
54 /**
Mike Cleronf116bf82009-09-27 19:14:12 -070055 * Duration of the fade when scrollbars fade away in milliseconds
56 */
57 private static final int SCROLL_BAR_FADE_DURATION = 250;
58
59 /**
60 * Default delay before the scrollbars fade in milliseconds
61 */
62 private static final int SCROLL_BAR_DEFAULT_DELAY = 300;
63
64 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065 * Defines the length of the fading edges in pixels
66 */
67 private static final int FADING_EDGE_LENGTH = 12;
68
69 /**
70 * Defines the duration in milliseconds of the pressed state in child
71 * components.
72 */
Adam Powelle14579b2009-12-16 18:39:52 -080073 private static final int PRESSED_STATE_DURATION = 125;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080074
75 /**
Jeff Browna4547672011-03-02 21:38:11 -080076 * Defines the default duration in milliseconds before a press turns into
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077 * a long press
78 */
Jeff Browna4547672011-03-02 21:38:11 -080079 private static final int DEFAULT_LONG_PRESS_TIMEOUT = 500;
80
81 /**
82 * Defines the time between successive key repeats in milliseconds.
83 */
84 private static final int KEY_REPEAT_DELAY = 50;
85
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 /**
87 * Defines the duration in milliseconds a user needs to hold down the
88 * appropriate button to bring up the global actions dialog (power off,
89 * lock screen, etc).
90 */
91 private static final int GLOBAL_ACTIONS_KEY_TIMEOUT = 500;
92
93 /**
94 * Defines the duration in milliseconds we will wait to see if a touch event
95 * is a tap or a scroll. If the user does not move within this interval, it is
96 * considered to be a tap.
97 */
Patrick Dubroye0a799a2011-05-04 16:19:22 -070098 private static final int TAP_TIMEOUT = 180;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099
100 /**
101 * Defines the duration in milliseconds we will wait to see if a touch event
102 * is a jump tap. If the user does not complete the jump tap within this interval, it is
103 * considered to be a tap.
104 */
105 private static final int JUMP_TAP_TIMEOUT = 500;
106
107 /**
108 * Defines the duration in milliseconds between the first tap's up event and
109 * the second tap's down event for an interaction to be considered a
110 * double-tap.
111 */
112 private static final int DOUBLE_TAP_TIMEOUT = 300;
113
114 /**
115 * Defines the duration in milliseconds we want to display zoom controls in response
116 * to a user panning within an application.
117 */
118 private static final int ZOOM_CONTROLS_TIMEOUT = 3000;
119
120 /**
121 * Inset in pixels to look for touchable content when the user touches the edge of the screen
122 */
123 private static final int EDGE_SLOP = 12;
124
125 /**
126 * Distance a touch can wander before we think the user is scrolling in pixels
127 */
Dianne Hackborn3e2ac882009-09-25 01:34:28 -0700128 private static final int TOUCH_SLOP = 16;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129
130 /**
Adam Powellde8d0832010-03-09 17:11:30 -0800131 * Distance a touch can wander before we think the user is attempting a paged scroll
132 * (in dips)
133 */
Adam Powellb7ef1d92010-03-11 10:25:24 -0800134 private static final int PAGING_TOUCH_SLOP = TOUCH_SLOP * 2;
Adam Powellde8d0832010-03-09 17:11:30 -0800135
136 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 * Distance between the first touch and second touch to still be considered a double tap
138 */
139 private static final int DOUBLE_TAP_SLOP = 100;
140
141 /**
142 * Distance a touch needs to be outside of a window's bounds for it to
143 * count as outside for purposes of dismissing the window.
144 */
145 private static final int WINDOW_TOUCH_SLOP = 16;
146
147 /**
148 * Minimum velocity to initiate a fling, as measured in pixels per second
149 */
150 private static final int MINIMUM_FLING_VELOCITY = 50;
Romain Guy4296fc42009-07-06 11:48:52 -0700151
152 /**
153 * Maximum velocity to initiate a fling, as measured in pixels per second
154 */
Adam Powell637d3372010-08-25 14:37:03 -0700155 private static final int MAXIMUM_FLING_VELOCITY = 8000;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156
157 /**
Svetoslav Ganov736c2752011-04-22 18:30:36 -0700158 * Distance between a touch up event denoting the end of a touch exploration
159 * gesture and the touch up event of a subsequent tap for the latter tap to be
160 * considered as a tap i.e. to perform a click.
161 */
162 private static final int TOUCH_EXPLORATION_TAP_SLOP = 80;
163
164 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 * The maximum size of View's drawing cache, expressed in bytes. This size
166 * should be at least equal to the size of the screen in ARGB888 format.
167 */
168 @Deprecated
Romain Guy0211a0a2011-02-14 16:34:59 -0800169 private static final int MAXIMUM_DRAWING_CACHE_SIZE = 480 * 800 * 4; // ARGB8888
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170
171 /**
172 * The coefficient of friction applied to flings/scrolls.
173 */
Romain Guy0211a0a2011-02-14 16:34:59 -0800174 private static final float SCROLL_FRICTION = 0.015f;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175
Adam Powell637d3372010-08-25 14:37:03 -0700176 /**
177 * Max distance to overscroll for edge effects
178 */
179 private static final int OVERSCROLL_DISTANCE = 0;
180
181 /**
182 * Max distance to overfling for edge effects
183 */
Gilles Debunne8ce7aab2011-01-25 11:23:30 -0800184 private static final int OVERFLING_DISTANCE = 6;
Adam Powell637d3372010-08-25 14:37:03 -0700185
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800186 private final int mEdgeSlop;
187 private final int mFadingEdgeLength;
188 private final int mMinimumFlingVelocity;
Romain Guy4296fc42009-07-06 11:48:52 -0700189 private final int mMaximumFlingVelocity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800190 private final int mScrollbarSize;
191 private final int mTouchSlop;
Adam Powellde8d0832010-03-09 17:11:30 -0800192 private final int mPagingTouchSlop;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800193 private final int mDoubleTapSlop;
Svetoslav Ganov736c2752011-04-22 18:30:36 -0700194 private final int mScaledTouchExplorationTapSlop;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 private final int mWindowTouchSlop;
196 private final int mMaximumDrawingCacheSize;
Adam Powell637d3372010-08-25 14:37:03 -0700197 private final int mOverscrollDistance;
198 private final int mOverflingDistance;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800199
200 private static final SparseArray<ViewConfiguration> sConfigurations =
201 new SparseArray<ViewConfiguration>(2);
202
203 /**
204 * @deprecated Use {@link android.view.ViewConfiguration#get(android.content.Context)} instead.
205 */
206 @Deprecated
207 public ViewConfiguration() {
208 mEdgeSlop = EDGE_SLOP;
209 mFadingEdgeLength = FADING_EDGE_LENGTH;
210 mMinimumFlingVelocity = MINIMUM_FLING_VELOCITY;
Romain Guy4296fc42009-07-06 11:48:52 -0700211 mMaximumFlingVelocity = MAXIMUM_FLING_VELOCITY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 mScrollbarSize = SCROLL_BAR_SIZE;
213 mTouchSlop = TOUCH_SLOP;
Adam Powellde8d0832010-03-09 17:11:30 -0800214 mPagingTouchSlop = PAGING_TOUCH_SLOP;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 mDoubleTapSlop = DOUBLE_TAP_SLOP;
Svetoslav Ganov736c2752011-04-22 18:30:36 -0700216 mScaledTouchExplorationTapSlop = TOUCH_EXPLORATION_TAP_SLOP;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 mWindowTouchSlop = WINDOW_TOUCH_SLOP;
218 //noinspection deprecation
219 mMaximumDrawingCacheSize = MAXIMUM_DRAWING_CACHE_SIZE;
Adam Powell637d3372010-08-25 14:37:03 -0700220 mOverscrollDistance = OVERSCROLL_DISTANCE;
221 mOverflingDistance = OVERFLING_DISTANCE;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800222 }
223
224 /**
225 * Creates a new configuration for the specified context. The configuration depends on
226 * various parameters of the context, like the dimension of the display or the density
227 * of the display.
228 *
229 * @param context The application context used to initialize this view configuration.
230 *
231 * @see #get(android.content.Context)
232 * @see android.util.DisplayMetrics
233 */
234 private ViewConfiguration(Context context) {
235 final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
236 final float density = metrics.density;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800237 final float sizeAndDensity;
238 if (context.getResources().getConfiguration().isLayoutSizeAtLeast(
239 Configuration.SCREENLAYOUT_SIZE_XLARGE)) {
240 sizeAndDensity = density * 1.5f;
241 } else {
242 sizeAndDensity = density;
243 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800244
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800245 mEdgeSlop = (int) (sizeAndDensity * EDGE_SLOP + 0.5f);
246 mFadingEdgeLength = (int) (sizeAndDensity * FADING_EDGE_LENGTH + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800247 mMinimumFlingVelocity = (int) (density * MINIMUM_FLING_VELOCITY + 0.5f);
Romain Guy4296fc42009-07-06 11:48:52 -0700248 mMaximumFlingVelocity = (int) (density * MAXIMUM_FLING_VELOCITY + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800249 mScrollbarSize = (int) (density * SCROLL_BAR_SIZE + 0.5f);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800250 mTouchSlop = (int) (sizeAndDensity * TOUCH_SLOP + 0.5f);
251 mPagingTouchSlop = (int) (sizeAndDensity * PAGING_TOUCH_SLOP + 0.5f);
252 mDoubleTapSlop = (int) (sizeAndDensity * DOUBLE_TAP_SLOP + 0.5f);
Svetoslav Ganov736c2752011-04-22 18:30:36 -0700253 mScaledTouchExplorationTapSlop = (int) (density * TOUCH_EXPLORATION_TAP_SLOP + 0.5f);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800254 mWindowTouchSlop = (int) (sizeAndDensity * WINDOW_TOUCH_SLOP + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800255
256 // Size of the screen in bytes, in ARGB_8888 format
257 mMaximumDrawingCacheSize = 4 * metrics.widthPixels * metrics.heightPixels;
Adam Powell637d3372010-08-25 14:37:03 -0700258
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800259 mOverscrollDistance = (int) (sizeAndDensity * OVERSCROLL_DISTANCE + 0.5f);
260 mOverflingDistance = (int) (sizeAndDensity * OVERFLING_DISTANCE + 0.5f);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800261 }
262
263 /**
264 * Returns a configuration for the specified context. The configuration depends on
265 * various parameters of the context, like the dimension of the display or the
266 * density of the display.
267 *
268 * @param context The application context used to initialize the view configuration.
269 */
270 public static ViewConfiguration get(Context context) {
271 final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
272 final int density = (int) (100.0f * metrics.density);
273
274 ViewConfiguration configuration = sConfigurations.get(density);
275 if (configuration == null) {
276 configuration = new ViewConfiguration(context);
277 sConfigurations.put(density, configuration);
278 }
279
280 return configuration;
281 }
282
283 /**
284 * @return The width of the horizontal scrollbar and the height of the vertical
285 * scrollbar in pixels
286 *
287 * @deprecated Use {@link #getScaledScrollBarSize()} instead.
288 */
289 @Deprecated
290 public static int getScrollBarSize() {
291 return SCROLL_BAR_SIZE;
292 }
293
294 /**
295 * @return The width of the horizontal scrollbar and the height of the vertical
296 * scrollbar in pixels
297 */
298 public int getScaledScrollBarSize() {
299 return mScrollbarSize;
300 }
301
302 /**
Mike Cleronf116bf82009-09-27 19:14:12 -0700303 * @return Duration of the fade when scrollbars fade away in milliseconds
304 */
305 public static int getScrollBarFadeDuration() {
306 return SCROLL_BAR_FADE_DURATION;
307 }
308
309 /**
310 * @return Default delay before the scrollbars fade in milliseconds
311 */
312 public static int getScrollDefaultDelay() {
313 return SCROLL_BAR_DEFAULT_DELAY;
314 }
315
316 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800317 * @return the length of the fading edges in pixels
318 *
319 * @deprecated Use {@link #getScaledFadingEdgeLength()} instead.
320 */
321 @Deprecated
322 public static int getFadingEdgeLength() {
323 return FADING_EDGE_LENGTH;
324 }
325
326 /**
327 * @return the length of the fading edges in pixels
328 */
329 public int getScaledFadingEdgeLength() {
330 return mFadingEdgeLength;
331 }
332
333 /**
334 * @return the duration in milliseconds of the pressed state in child
335 * components.
336 */
337 public static int getPressedStateDuration() {
338 return PRESSED_STATE_DURATION;
339 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800340
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800341 /**
342 * @return the duration in milliseconds before a press turns into
343 * a long press
344 */
345 public static int getLongPressTimeout() {
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800346 return AppGlobals.getIntCoreSetting(Settings.Secure.LONG_PRESS_TIMEOUT,
Jeff Browna4547672011-03-02 21:38:11 -0800347 DEFAULT_LONG_PRESS_TIMEOUT);
348 }
349
350 /**
351 * @return the time before the first key repeat in milliseconds.
352 */
353 public static int getKeyRepeatTimeout() {
354 return getLongPressTimeout();
355 }
356
357 /**
358 * @return the time between successive key repeats in milliseconds.
359 */
360 public static int getKeyRepeatDelay() {
361 return KEY_REPEAT_DELAY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800362 }
Svetoslav Ganov54d068e2011-03-02 12:58:40 -0800363
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800364 /**
365 * @return the duration in milliseconds we will wait to see if a touch event
366 * is a tap or a scroll. If the user does not move within this interval, it is
367 * considered to be a tap.
368 */
369 public static int getTapTimeout() {
370 return TAP_TIMEOUT;
371 }
372
373 /**
374 * @return the duration in milliseconds we will wait to see if a touch event
375 * is a jump tap. If the user does not move within this interval, it is
376 * considered to be a tap.
377 */
378 public static int getJumpTapTimeout() {
379 return JUMP_TAP_TIMEOUT;
380 }
381
382 /**
383 * @return the duration in milliseconds between the first tap's up event and
384 * the second tap's down event for an interaction to be considered a
385 * double-tap.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 */
387 public static int getDoubleTapTimeout() {
388 return DOUBLE_TAP_TIMEOUT;
389 }
390
391 /**
392 * @return Inset in pixels to look for touchable content when the user touches the edge of the
393 * screen
394 *
395 * @deprecated Use {@link #getScaledEdgeSlop()} instead.
396 */
397 @Deprecated
398 public static int getEdgeSlop() {
399 return EDGE_SLOP;
400 }
401
402 /**
403 * @return Inset in pixels to look for touchable content when the user touches the edge of the
404 * screen
405 */
406 public int getScaledEdgeSlop() {
407 return mEdgeSlop;
408 }
409
410 /**
411 * @return Distance a touch can wander before we think the user is scrolling in pixels
412 *
413 * @deprecated Use {@link #getScaledTouchSlop()} instead.
414 */
415 @Deprecated
416 public static int getTouchSlop() {
417 return TOUCH_SLOP;
418 }
419
420 /**
421 * @return Distance a touch can wander before we think the user is scrolling in pixels
422 */
423 public int getScaledTouchSlop() {
424 return mTouchSlop;
425 }
Adam Powellde8d0832010-03-09 17:11:30 -0800426
427 /**
428 * @return Distance a touch can wander before we think the user is scrolling a full page
429 * in dips
430 */
431 public int getScaledPagingTouchSlop() {
432 return mPagingTouchSlop;
433 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800434
435 /**
436 * @return Distance between the first touch and second touch to still be
437 * considered a double tap
438 * @deprecated Use {@link #getScaledDoubleTapSlop()} instead.
439 * @hide The only client of this should be GestureDetector, which needs this
440 * for clients that still use its deprecated constructor.
441 */
442 @Deprecated
443 public static int getDoubleTapSlop() {
444 return DOUBLE_TAP_SLOP;
445 }
446
447 /**
448 * @return Distance between the first touch and second touch to still be
449 * considered a double tap
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800450 */
451 public int getScaledDoubleTapSlop() {
452 return mDoubleTapSlop;
453 }
454
455 /**
Svetoslav Ganov736c2752011-04-22 18:30:36 -0700456 * @return Distance between a touch up event denoting the end of a touch exploration
457 * gesture and the touch up event of a subsequent tap for the latter tap to be
458 * considered as a tap i.e. to perform a click.
459 *
460 * @hide
461 */
462 public int getScaledTouchExplorationTapSlop() {
463 return mScaledTouchExplorationTapSlop;
464 }
465
466 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 * @return Distance a touch must be outside the bounds of a window for it
468 * to be counted as outside the window for purposes of dismissing that
469 * window.
470 *
471 * @deprecated Use {@link #getScaledWindowTouchSlop()} instead.
472 */
473 @Deprecated
474 public static int getWindowTouchSlop() {
475 return WINDOW_TOUCH_SLOP;
476 }
477
478 /**
479 * @return Distance a touch must be outside the bounds of a window for it
480 * to be counted as outside the window for purposes of dismissing that
481 * window.
482 */
483 public int getScaledWindowTouchSlop() {
484 return mWindowTouchSlop;
485 }
486
487 /**
488 * @return Minimum velocity to initiate a fling, as measured in pixels per second.
489 *
490 * @deprecated Use {@link #getScaledMinimumFlingVelocity()} instead.
491 */
492 @Deprecated
493 public static int getMinimumFlingVelocity() {
494 return MINIMUM_FLING_VELOCITY;
495 }
496
497 /**
498 * @return Minimum velocity to initiate a fling, as measured in pixels per second.
499 */
500 public int getScaledMinimumFlingVelocity() {
501 return mMinimumFlingVelocity;
502 }
503
504 /**
Romain Guy4296fc42009-07-06 11:48:52 -0700505 * @return Maximum velocity to initiate a fling, as measured in pixels per second.
506 *
507 * @deprecated Use {@link #getScaledMaximumFlingVelocity()} instead.
508 */
509 @Deprecated
510 public static int getMaximumFlingVelocity() {
511 return MAXIMUM_FLING_VELOCITY;
512 }
513
514 /**
515 * @return Maximum velocity to initiate a fling, as measured in pixels per second.
516 */
517 public int getScaledMaximumFlingVelocity() {
518 return mMaximumFlingVelocity;
519 }
520
521 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800522 * The maximum drawing cache size expressed in bytes.
523 *
524 * @return the maximum size of View's drawing cache expressed in bytes
525 *
526 * @deprecated Use {@link #getScaledMaximumDrawingCacheSize()} instead.
527 */
528 @Deprecated
529 public static int getMaximumDrawingCacheSize() {
530 //noinspection deprecation
531 return MAXIMUM_DRAWING_CACHE_SIZE;
532 }
533
534 /**
535 * The maximum drawing cache size expressed in bytes.
536 *
537 * @return the maximum size of View's drawing cache expressed in bytes
538 */
539 public int getScaledMaximumDrawingCacheSize() {
540 return mMaximumDrawingCacheSize;
541 }
542
543 /**
Adam Powell637d3372010-08-25 14:37:03 -0700544 * @return The maximum distance a View should overscroll by when showing edge effects.
545 */
546 public int getScaledOverscrollDistance() {
547 return mOverscrollDistance;
548 }
549
550 /**
551 * @return The maximum distance a View should overfling by when showing edge effects.
552 */
553 public int getScaledOverflingDistance() {
554 return mOverflingDistance;
555 }
556
557 /**
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800558 * The amount of time that the zoom controls should be
559 * displayed on the screen expressed in milliseconds.
560 *
561 * @return the time the zoom controls should be visible expressed
562 * in milliseconds.
563 */
564 public static long getZoomControlsTimeout() {
565 return ZOOM_CONTROLS_TIMEOUT;
566 }
567
568 /**
569 * The amount of time a user needs to press the relevant key to bring up
570 * the global actions dialog.
571 *
572 * @return how long a user needs to press the relevant key to bring up
573 * the global actions dialog.
574 */
575 public static long getGlobalActionKeyTimeout() {
576 return GLOBAL_ACTIONS_KEY_TIMEOUT;
577 }
578
579 /**
580 * The amount of friction applied to scrolls and flings.
581 *
582 * @return A scalar dimensionless value representing the coefficient of
583 * friction.
584 */
585 public static float getScrollFriction() {
586 return SCROLL_FRICTION;
587 }
588}