Android.Views.View.OnScrollChanged Method
This is called in response to an internal scroll in this view (i.e., the view scrolled its own contents).

Syntax

[Android.Runtime.Register("onScrollChanged", "(IIII)V", "GetOnScrollChanged_IIIIHandler")]
protected virtual void OnScrollChanged (int l, int t, int oldl, int oldt)

Parameters

l
Current horizontal scroll origin.
t
Current vertical scroll origin.
oldl
Previous horizontal scroll origin.
oldt
Previous vertical scroll origin.

Remarks

This is called in response to an internal scroll in this view (i.e., the view scrolled its own contents). This is typically as a result of View.ScrollBy(int, System.Int32) or View.ScrollTo(int, System.Int32) having been called.

[Android Documentation]

Requirements

Namespace: Android.Views
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1