Gallery.OnFling(MotionEvent, MotionEvent, Single, Single) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
deprecated
Notified of a fling event when it occurs with the initial on down MotionEvent and the matching up MotionEvent.
[Android.Runtime.Register("onFling", "(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z", "GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler")]
[System.Obsolete("deprecated")]
public virtual bool OnFling (Android.Views.MotionEvent? e1, Android.Views.MotionEvent? e2, float velocityX, float velocityY);
[<Android.Runtime.Register("onFling", "(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z", "GetOnFling_Landroid_view_MotionEvent_Landroid_view_MotionEvent_FFHandler")>]
[<System.Obsolete("deprecated")>]
abstract member OnFling : Android.Views.MotionEvent * Android.Views.MotionEvent * single * single -> bool
override this.OnFling : Android.Views.MotionEvent * Android.Views.MotionEvent * single * single -> bool
Parameters
- e1
- MotionEvent
The first down motion event that started the fling.
- e2
- MotionEvent
The move motion event that triggered the current onFling.
- velocityX
- Single
The velocity of this fling measured in pixels per second along the x axis.
- velocityY
- Single
The velocity of this fling measured in pixels per second along the y axis.
Returns
Implements
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.