Android APIs
public static interface

RecyclerView.RecyclerListener

android.support.v7.widget.RecyclerView.RecyclerListener

Class Overview

A RecyclerListener can be set on a RecyclerView to receive messages whenever a view is recycled.

Summary

Public Methods
abstract void onViewRecycled(RecyclerView.ViewHolder holder)
This method is called whenever the view in the ViewHolder is recycled.

Public Methods

public abstract void onViewRecycled (RecyclerView.ViewHolder holder)

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.

Parameters
holder The ViewHolder containing the view that was recycled