public static interface View.OnScrollChangeListener
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.
Modifier and Type | Method and Description |
---|---|
void |
onScrollChange(View v,
int scrollX,
int scrollY,
int oldScrollX,
int oldScrollY)
Called when the scroll position of a view changes.
|
void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldScrollY)
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.