added in version 25.1.0
belongs to Maven artifact com.android.support:recyclerview-v7:28.0.0-alpha1
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 |
![]() |
![]() |
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.
See also:
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 | |
---|---|
![]()
java.lang.Object
|
Public constructors
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 th |