HomeSort by relevance Sort by last modified time
    Searched refs:flingVelocity (Results 1 - 3 of 3) sorted by null

  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarLayoutManager.java 701 public boolean settleScrollForFling(RecyclerView parent, int flingVelocity) {
711 if (Math.abs(flingVelocity) <= FLING_THRESHOLD_TO_PAGINATE
724 boolean isDownGesture = flingVelocity > 0
725 || (flingVelocity == 0 && mLastDragDistance >= 0);
726 boolean isUpGesture = flingVelocity < 0
727 || (flingVelocity == 0 && mLastDragDistance < 0);
738 Log.e(TAG, "Error setting scroll for fling! flingVelocity: \t" + flingVelocity +
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewLayoutTest.java     [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 100 milliseconds