added in version 25.1.0
belongs to Maven artifact com.android.support:recyclerview-v7:28.0.0-alpha1

RecyclerView.OnFlingListener

public static abstract class RecyclerView.OnFlingListener
extends Object

java.lang.Object
   ↳ android.support.v7.widget.RecyclerView.OnFlingListener
Known Direct Subclasses
Known Indirect Subclasses


This class defines the behavior of fling if the developer wishes to handle it.

Subclasses of RecyclerView.OnFlingListener can be used to implement custom fling behavior.

Summary

Public constructors

RecyclerView.OnFlingListener()

Public methods

abstract boolean onFling(int velocityX, int velocityY)

Override this to handle a fling given the velocities in both x and y directions.

Inherited methods

From class java.lang.Object

Public constructors

RecyclerView.OnFlingListener

added in version 25.1.0
RecyclerView.OnFlingListener ()

Public methods

onFling

added in version 25.1.0
boolean onFling (int velocityX, 
                int velocityY)

Override this to handle a fling given the velocities in both x and y directions. Note that this method will only be called if the associated RecyclerView.LayoutManager supports scrolling and the fling is not handled by nested scrolls first.

Parameters
velocityX int: the fling velocity on the X axis

velocityY int: the fling velocity on the Y axis

Returns
boolean true if the fling was handled, false otherwise.