Searched refs:touchSlop (Results 1 – 6 of 6) 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()
604 float touchSlop = ViewConfiguration.get(mContext).getScaledTouchSlop(); in getTouchSlop() local608 return customSlopMultiplier * slopMultiplier * touchSlop; in getTouchSlop()610 return slopMultiplier * touchSlop; in getTouchSlop()620 float touchSlop = getTouchSlop(); in getSquaredTouchSlop() local621 return touchSlop * touchSlop; in getSquaredTouchSlop()
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()
348 float touchSlop = (float) mHeadsUpNotificationOnTouchListener.getTouchSlop(); in setUpMotionEvents() local359 when(mMoveMotionEventLessThanTouchSlop.getRawX()).thenReturn(touchSlop - TRANSLATION); in setUpMotionEvents()360 when(mMoveMotionEventLessThanTouchSlop.getRawY()).thenReturn(touchSlop - TRANSLATION); in setUpMotionEvents()365 when(mMoveMotionEventMoreThanTouchSlop.getRawX()).thenReturn(touchSlop + TRANSLATION); in setUpMotionEvents()366 when(mMoveMotionEventMoreThanTouchSlop.getRawY()).thenReturn(touchSlop + TRANSLATION); in setUpMotionEvents()
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()
1171 final int touchSlop = Math.round(touchSlopScale * mTouchSlop); in determineScrollingStart() local1172 boolean moved = diff > touchSlop || ev.getAction() == ACTION_MOVE_ALLOW_EASY_FLING; in determineScrollingStart()