Since: API Level 2.5
public static interface

WheelInterfaces.Listeners.OnWheelScrollListener

com.droidux.pack.wheel.interfaces.WheelInterfaces.Listeners.OnWheelScrollListener

Class Overview

Represents a listener to be notified when the wheel is scrolled.

Summary

Public Methods
abstract void onScrollFinished(WheelInterfaces.Views.WheelViewInterface wheel)
Called when the wheel has finished scrolling.
abstract void onScrollStarted(WheelInterfaces.Views.WheelViewInterface wheel)
Called when the wheel is about to scroll.
abstract void onScrolling(WheelInterfaces.Views.WheelViewInterface wheel, float distance)
Called when the wheel is scrolling for a distance

Public Methods

public abstract void onScrollFinished (WheelInterfaces.Views.WheelViewInterface wheel)

Since: API Level 2.5

Called when the wheel has finished scrolling.

Parameters
wheel The wheel that is scrolled.

public abstract void onScrollStarted (WheelInterfaces.Views.WheelViewInterface wheel)

Since: API Level 2.5

Called when the wheel is about to scroll.

Parameters
wheel The wheel that is scrolled.

public abstract void onScrolling (WheelInterfaces.Views.WheelViewInterface wheel, float distance)

Since: API Level 2.5

Called when the wheel is scrolling for a distance

Parameters
wheel The wheel that is scrolling.
distance The distance of the scroll since the last call of the onScrolling callback.