Summary:
Methods
AppBarLayout.BaseOnOffsetChangedListener
public
static
interface
AppBarLayout.BaseOnOffsetChangedListener
com.google.android.material.appbar.AppBarLayout.BaseOnOffsetChangedListener<T extends com.google.android.material.appbar.AppBarLayout> |
Interface definition for a callback to be invoked when an AppBarLayout
's vertical
offset changes.
Summary
Public methods | |
---|---|
abstract
void
|
onOffsetChanged(T appBarLayout, int verticalOffset)
Called when the |
Public methods
onOffsetChanged
public abstract void onOffsetChanged (T appBarLayout, int verticalOffset)
Called when the AppBarLayout
's layout offset has been changed. This allows child
views to implement custom behavior based on the offset (for instance pinning a view at a
certain y value).
Parameters | |
---|---|
appBarLayout |
T : the AppBarLayout which offset has changed |
verticalOffset |
int : the vertical offset for the parent AppBarLayout , in px
|