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

SortedListAdapterCallback

public abstract class SortedListAdapterCallback
extends Callback<T2>

java.lang.Object
   ↳ android.support.v7.util.SortedList.Callback<T2>
     ↳ android.support.v7.widget.util.SortedListAdapterCallback<T2>


A SortedList.Callback implementation that can bind a SortedList to a RecyclerView.Adapter.

Summary

Public constructors

SortedListAdapterCallback(Adapter adapter)

Creates a SortedList.Callback that will forward data change events to the provided Adapter.

Public methods

void onChanged(int position, int count, Object payload)

Called when count number of items are updated at the given position.

void onChanged(int position, int count)

Called by the SortedList when the item at the given position is updated.

void onInserted(int position, int count)
void onMoved(int fromPosition, int toPosition)
void onRemoved(int position, int count)

Inherited methods

From class android.support.v7.util.SortedList.Callback
From class java.lang.Object
From interface java.util.Comparator
From interface android.support.v7.util.ListUpdateCallback

Public constructors

SortedListAdapterCallback

added in version 22.1.0
SortedListAdapterCallback (Adapter adapter)

Creates a SortedList.Callback that will forward data change events to the provided Adapter.

Parameters
adapter Adapter: The Adapter instance which should receive events from the SortedList.

Public methods

onChanged

added in version 25.1.0
void onChanged (int position, 
                int count, 
                Object payload)

Called when count number of items are updated at the given position.

Parameters
position int: The position of the item which has been updated.

count int: The number of items which has changed.

payload Object

onChanged

added in version 22.1.0
void onChanged (int position, 
                int count)

Called by the SortedList when the item at the given position is updated.

Parameters
position int: The position of the item which has been updated.

count int: The number of items which has changed.

onInserted

added in version 22.1.0
void onInserted (int position, 
                int count)

Parameters
position int

count int

onMoved

added in version 22.1.0
void onMoved (int fromPosition, 
                int toPosition)

Parameters
fromPosition int

toPosition int

onRemoved

added in version 22.1.0
void onRemoved (int position, 
                int count)

Parameters
position int

count int