Android.Widget.Scroller.Fling Method
Start scrolling based on a fling gesture.

Syntax

[Android.Runtime.Register("fling", "(IIIIIIII)V", "GetFling_IIIIIIIIHandler")]
public virtual void Fling (int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY)

Parameters

startX
Starting point of the scroll (X)
startY
Starting point of the scroll (Y)
velocityX
Initial velocity of the fling (X) measured in pixels per second.
velocityY
Initial velocity of the fling (Y) measured in pixels per second
minX
Minimum X value. The scroller will not scroll past this point.
maxX
Maximum X value. The scroller will not scroll past this point.
minY
Minimum Y value. The scroller will not scroll past this point.
maxY
Maximum Y value. The scroller will not scroll past this point.

Remarks

Start scrolling based on a fling gesture. The distance travelled will depend on the initial velocity of the fling.

[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