public static interface RecyclerView.ChildDrawingOrderCallback
It works using the ViewGroup.getChildDrawingOrder(int, int)
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.
Modifier and Type | Method and Description |
---|---|
int |
onGetChildDrawingOrder(int childCount,
int i)
Returns the index of the child to draw for this iteration.
|
int onGetChildDrawingOrder(int childCount, int i)
i
- The current iteration.RecyclerView.setChildDrawingOrderCallback(RecyclerView.ChildDrawingOrderCallback)