android.support.v7.widget.RecyclerView.RecyclerListener |
A RecyclerListener can be set on a RecyclerView to receive messages whenever a view is recycled.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This method is called whenever the view in the ViewHolder is recycled.
|
This method is called whenever the view in the ViewHolder is recycled.
RecyclerView calls this method right before clearing ViewHolder's internal data and
sending it to RecycledViewPool. This way, if ViewHolder was holding valid information
before being recycled, you can call getAdapterPosition()
to get
its adapter position.
holder | The ViewHolder containing the view that was recycled |
---|