MotionEvent.GetHistoricalPressure Method

Definition

Overloads

GetHistoricalPressure(Int32)

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

GetHistoricalPressure(Int32, Int32)

Returns a historical pressure coordinate, as per #getPressure(int), that occurred between this event and the previous event for the given pointer.

GetHistoricalPressure(Int32)

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

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

Parameters

pos
Int32

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

Returns

Attributes

Remarks

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

Java documentation for android.view.MotionEvent.getHistoricalPressure(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

GetHistoricalPressure(Int32, Int32)

Returns a historical pressure coordinate, as per #getPressure(int), that occurred between this event and the previous event for the given pointer.

[Android.Runtime.Register("getHistoricalPressure", "(II)F", "")]
public float GetHistoricalPressure (int pointerIndex, int pos);
[<Android.Runtime.Register("getHistoricalPressure", "(II)F", "")>]
member this.GetHistoricalPressure : 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 pressure coordinate, as per #getPressure(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.getHistoricalPressure(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