Android APIs
public abstract class

SortedListAdapterCallback

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

Class Overview

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)
Called by the SortedList when the item at the given position is updated.
void onInserted(int position, int count)
Called by the SortedList when an item is inserted at the given position.
void onMoved(int fromPosition, int toPosition)
Called by the SortedList when an item changes its position in the list.
void onRemoved(int position, int count)
Called by the SortedList when an item is removed from the given position.
[Expand]
Inherited Methods
From class android.support.v7.util.SortedList.Callback
From class java.lang.Object
From interface java.util.Comparator

Public Constructors

public SortedListAdapterCallback (Adapter adapter)

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

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

Public Methods

public void onChanged (int position, int count)

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

Parameters
position The position of the item which has been updated.
count The number of items which has changed.

public void onInserted (int position, int count)

Called by the SortedList when an item is inserted at the given position.

Parameters
position The position of the new item.
count The number of items that have been added.

public void onMoved (int fromPosition, int toPosition)

Called by the SortedList when an item changes its position in the list.

Parameters
fromPosition The previous position of the item before the move.
toPosition The new position of the item.

public void onRemoved (int position, int count)

Called by the SortedList when an item is removed from the given position.

Parameters
position The position of the item which has been removed.
count The number of items which have been removed.