MotionEvent.GetHistoricalTouchMajor Method

Definition

Overloads

GetHistoricalTouchMajor(Int32)

#getHistoricalTouchMajor(int, int) for the first pointer index (may be an arbitrary pointer identifier).

GetHistoricalTouchMajor(Int32, Int32)

Returns a historical touch major axis coordinate, as per #getTouchMajor(int), that occurred between this event and the previous event for the given pointer.

GetHistoricalTouchMajor(Int32)

#getHistoricalTouchMajor(int, int) for the first pointer index (may be an arbitrary pointer identifier).

[Android.Runtime.Register("getHistoricalTouchMajor", "(I)F", "")]
public float GetHistoricalTouchMajor (int pos);
[<Android.Runtime.Register("getHistoricalTouchMajor", "(I)F", "")>]
member this.GetHistoricalTouchMajor : int -> single

Parameters

pos
Int32

Which historical value to return; must be less than #getHistorySize

Returns

Attributes

Remarks

#getHistoricalTouchMajor(int, int) for the first pointer index (may be an arbitrary pointer identifier).

Java documentation for android.view.MotionEvent.getHistoricalTouchMajor(int).

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.

See also

Applies to

GetHistoricalTouchMajor(Int32, Int32)

Returns a historical touch major axis coordinate, as per #getTouchMajor(int), that occurred between this event and the previous event for the given pointer.

[Android.Runtime.Register("getHistoricalTouchMajor", "(II)F", "")]
public float GetHistoricalTouchMajor (int pointerIndex, int pos);
[<Android.Runtime.Register("getHistoricalTouchMajor", "(II)F", "")>]
member this.GetHistoricalTouchMajor : int * int -> single

Parameters

pointerIndex
Int32

Raw index of pointer to retrieve. Value may be from 0 (the first pointer that is down) to #getPointerCount()-1.

pos
Int32

Which historical value to return; must be less than #getHistorySize

Returns

Attributes

Remarks

Returns a historical touch major axis coordinate, as per #getTouchMajor(int), that occurred between this event and the previous event for the given pointer. Only applies to ACTION_MOVE events.

Java documentation for android.view.MotionEvent.getHistoricalTouchMajor(int, int).

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.

See also

Applies to