Searched refs:touchSlop (Results 1 – 5 of 5) sorted by relevance
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()
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()
114 final int touchSlop = ViewConfiguration.get(c).getScaledTouchSlop(); in MessageScrollView() local115 mTouchSlopSquared = touchSlop * touchSlop; in MessageScrollView()
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()
950 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local951 boolean xMoved = xDiff > touchSlop; in determineScrollingStart()