public interface

RecyclerView.ChildDrawingOrderCallback

 androidx.recyclerview.widget.RecyclerView.ChildDrawingOrderCallback

Overview

A callback interface that can be used to alter the drawing order of RecyclerView children.

It works using the ViewGroup method, so any case that applies to that method also applies to this callback. For example, changing the drawing order of two views will not have any effect if their elevation values are different since elevation overrides the result of this callback.

Summary

Methods
public intonGetChildDrawingOrder(int childCount, int i)

Returns the index of the child to draw for this iteration.

Methods

public int onGetChildDrawingOrder(int childCount, int i)

Returns the index of the child to draw for this iteration. Override this if you want to change the drawing order of children. By default, it returns i.

Parameters:

i: The current iteration.

Returns:

The index of the child to draw this iteration.

See also: RecyclerView.setChildDrawingOrderCallback(RecyclerView.ChildDrawingOrderCallback)