SortedList.Callback

abstract class SortedList.Callback<T2> : Comparator, ListUpdateCallback

Known direct subclasses
SortedList.BatchedCallback

A callback implementation that can batch notify events dispatched by the SortedList.

SortedListAdapterCallback

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


The class that controls the behavior of the SortedList.

It defines how items should be sorted and how duplicates should be handled.

SortedList calls the callback methods on this class to notify changes about the underlying data.

Summary

Public constructors

Public functions

abstract Boolean
areContentsTheSame(oldItem: T2!, newItem: T2!)

Called by the SortedList when it wants to check whether two items have the same data or not.

abstract Boolean
areItemsTheSame(item1: T2!, item2: T2!)

Called by the SortedList to decide whether two objects represent the same Item or not.

abstract Int
compare(o1: T2!, o2: T2!)

Similar to compare, should compare two and return how they should be ordered.

Any?
getChangePayload(item1: T2!, item2: T2!)

When areItemsTheSame returns true for two items and areContentsTheSame returns false for them, Callback calls this method to get a payload about the change.

abstract Unit
onChanged(position: Int, count: Int)

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

Unit
onChanged(position: Int, count: Int, payload: Any!)

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

Inherited functions

From java.util.Comparator
java-static Comparator<T!>!
<T, U> comparing(
    keyExtractor: Function<T!, U!>!,
    keyComparator: Comparator<U!>!
)
java-static Comparator<T!>!
<T> comparingDouble(keyExtractor: ToDoubleFunction<T!>!)
java-static Comparator<T!>!
<T> comparingInt(keyExtractor: ToIntFunction<T!>!)
java-static Comparator<T!>!
<T> comparingLong(keyExtractor: ToLongFunction<T!>!)
java-static Comparator<T!>!
<T : Comparable<T!>?> naturalOrder()
java-static Comparator<T!>!
<T> nullsFirst(comparator: Comparator<T!>!)
java-static Comparator<T!>!
<T> nullsLast(comparator: Comparator<T!>!)
java-static Comparator<T!>!
<T : Comparable<T!>?> reverseOrder()
Comparator<T!>!
Comparator<T!>!
Comparator<T!>!
Comparator<T!>!
thenComparingInt(keyExtractor: ToIntFunction<T!>!)
Comparator<T!>!
thenComparingLong(keyExtractor: ToLongFunction<T!>!)
From androidx.recyclerview.widget.ListUpdateCallback
abstract Unit
onInserted(position: Int, count: Int)

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

abstract Unit
onMoved(fromPosition: Int, toPosition: Int)

Called when an item changes its position in the list.

abstract Unit
onRemoved(position: Int, count: Int)

Called when count number of items are removed from the given position.

Public constructors

Callback

Added in 1.0.0
Callback()

Public functions

areContentsTheSame

Added in 1.0.0
abstract fun areContentsTheSame(oldItem: T2!, newItem: T2!): Boolean

Called by the SortedList when it wants to check whether two items have the same data or not. SortedList uses this information to decide whether it should call onChanged or not.

SortedList uses this method to check equality instead of equals so that you can change its behavior depending on your UI.

For example, if you are using SortedList with a RecyclerView.Adapter, you should return whether the items' visual representations are the same or not.

Parameters
oldItem: T2!

The previous representation of the object.

newItem: T2!

The new object that replaces the previous one.

Returns
Boolean

True if the contents of the items are the same or false if they are different.

areItemsTheSame

Added in 1.0.0
abstract fun areItemsTheSame(item1: T2!, item2: T2!): Boolean

Called by the SortedList to decide whether two objects represent the same Item or not.

For example, if your items have unique ids, this method should check their equality.

Parameters
item1: T2!

The first item to check.

item2: T2!

The second item to check.

Returns
Boolean

True if the two items represent the same object or false if they are different.

compare

Added in 1.0.0
abstract fun compare(o1: T2!, o2: T2!): Int

Similar to compare, should compare two and return how they should be ordered.

Parameters
o1: T2!

The first object to compare.

o2: T2!

The second object to compare.

Returns
Int

a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.

getChangePayload

Added in 1.0.0
fun getChangePayload(item1: T2!, item2: T2!): Any?

When areItemsTheSame returns true for two items and areContentsTheSame returns false for them, Callback calls this method to get a payload about the change.

For example, if you are using Callback with RecyclerView, you can return the particular field that changed in the item and your ItemAnimator can use that information to run the correct animation.

Default implementation returns null.

Parameters
item1: T2!

The first item to check.

item2: T2!

The second item to check.

Returns
Any?

A payload object that represents the changes between the two items.

onChanged

Added in 1.0.0
abstract fun onChanged(position: Int, count: Int): Unit

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.

onChanged

Added in 1.4.0-alpha01
fun onChanged(position: Int, count: Int, payload: Any!): Unit

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