Android.Widget.AbsListView.IOnScrollListener.OnScrollStateChanged Method
Callback method to be invoked while the list view or grid view is being scrolled.

Syntax

[Android.Runtime.Register("onScrollStateChanged", "(Landroid/widget/AbsListView;I)V", "GetOnScrollStateChanged_Landroid_widget_AbsListView_IHandler:Android.Widget.AbsListView/IOnScrollListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void OnScrollStateChanged (AbsListView view, [Android.Runtime.GeneratedEnum] ScrollState scrollState)

Parameters

view
The view whose scroll state is being reported
scrollState
The current scroll state. One of AbsListView.IOnScrollListener.SCROLL_STATE_IDLE, AbsListView.IOnScrollListener.SCROLL_STATE_TOUCH_SCROLL or AbsListView.IOnScrollListener.SCROLL_STATE_IDLE.

Remarks

Callback method to be invoked while the list view or grid view is being scrolled. If the view is being scrolled, this method will be called before the next frame of the scroll is rendered. In particular, it will be called before any calls to Adapter.getView(int, android.view.View, android.view.ViewGroup).

[Android Documentation]

Requirements

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