Home
last modified time | relevance | path

Searched refs:touchSlop (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/app/list/
DPhoneFavoriteListView.java51 private float touchSlop; field in PhoneFavoriteListView
105 touchSlop = ViewConfiguration.get(context).getScaledPagingTouchSlop(); in PhoneFavoriteListView()
112 touchSlop = ViewConfiguration.get(getContext()).getScaledPagingTouchSlop(); in onConfigurationChanged()
153 (Math.abs(lastDragY - touchDownForDragStartY) >= 4 * touchSlop)) { in onDragEvent()
/packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
DSwipeButtonHelper.java50 private int touchSlop; field in SwipeButtonHelper
114 touchSlop = configuration.getScaledPagingTouchSlop(); in initDimens()
182 if (!touchSlopExeeded && distance > touchSlop) { in onTouchEvent()
486 return translation > 0.0f ? translation + touchSlop : 0.0f; in getTranslationFromRadius()
490 if (translation <= touchSlop) { in getRadiusFromTranslation()
493 return (translation - touchSlop) * BACKGROUND_RADIUS_SCALE_FACTOR + minBackgroundRadius; in getRadiusFromTranslation()
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
DFlingUpDownTouchHandler.java156 private float touchSlop; field in FlingUpDownTouchHandler
179 touchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); in FlingUpDownTouchHandler()
274 if (Math.abs(deltaY) > touchSlop) { in onTouch()
295 || Math.abs(pointerY - initialTouchY) > touchSlop in endMotionEvent()
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java1033 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local
1034 boolean moved = diff > touchSlop || ev.getAction() == ACTION_MOVE_ALLOW_EASY_FLING; in determineScrollingStart()