Android APIs
Added in API level 23
public static interface

View.OnScrollChangeListener

android.view.View.OnScrollChangeListener

Class Overview

Interface definition for a callback to be invoked when the scroll X or Y positions of a view change.

Note: Some views handle scrolling independently from View and may have their own separate listeners for scroll-type events. For example, ListView allows clients to register an AbsListView.OnScrollListener to listen for changes in list scroll position.

Summary

Public Methods
abstract void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY)
Called when the scroll position of a view changes.

Public Methods

public abstract void onScrollChange (View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY)

Added in API level 23

Called when the scroll position of a view changes.

Parameters
v The view whose scroll position has changed.
scrollX Current horizontal scroll origin.
scrollY Current vertical scroll origin.
oldScrollX Previous horizontal scroll origin.
oldScrollY Previous vertical scroll origin.