WearableLinearLayoutManager.LayoutCallback

Added in 1.1.0

public abstract class WearableLinearLayoutManager.LayoutCallback

Known direct subclasses
CurvingLayoutCallback

An implementation of the WearableLinearLayoutManager.LayoutCallback aligning the children of the associated WearableRecyclerView along a pre-defined vertical curve.


Callback for interacting with layout passes.

Summary

Public constructors

Public methods

abstract void

Override this method to implement custom child layout behavior on scroll.

Public constructors

LayoutCallback

Added in 1.1.0
public LayoutCallback()

Public methods

onLayoutFinished

Added in 1.1.0
public abstract void onLayoutFinished(View child, RecyclerView parent)

Override this method to implement custom child layout behavior on scroll. It is called at the end of each layout pass of the view (including scrolling) and enables you to modify any property of the child view. Examples include scaling the children based on their distance from the center of the parent, or changing the translation of the children to create an illusion of the path they are moving along.

Parameters
View child

the current child to be affected.

RecyclerView parent

the RecyclerView parent that this class is attached to.