Searched refs:touchSlop (Results 1 – 4 of 4) sorted by relevance
51 private float touchSlop; field in PhoneFavoriteListView105 touchSlop = ViewConfiguration.get(context).getScaledPagingTouchSlop(); in PhoneFavoriteListView()112 touchSlop = ViewConfiguration.get(getContext()).getScaledPagingTouchSlop(); in onConfigurationChanged()153 (Math.abs(lastDragY - touchDownForDragStartY) >= 4 * touchSlop)) { in onDragEvent()
50 private int touchSlop; field in SwipeButtonHelper114 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()
156 private float touchSlop; field in FlingUpDownTouchHandler179 touchSlop = ViewConfiguration.get(context).getScaledTouchSlop(); in FlingUpDownTouchHandler()274 if (Math.abs(deltaY) > touchSlop) { in onTouch()295 || Math.abs(pointerY - initialTouchY) > touchSlop in endMotionEvent()
1033 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local1034 boolean moved = diff > touchSlop || ev.getAction() == ACTION_MOVE_ALLOW_EASY_FLING; in determineScrollingStart()