Most visited

Recently visited

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)

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.

Inherited methods

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

Public constructors

SortedListAdapterCallback

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

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

void onInserted (int position, 
                int count)

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

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

onMoved

void onMoved (int fromPosition, 
                int toPosition)

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

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

onRemoved

void onRemoved (int position, 
                int count)

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

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

Hooray!