Most visited

Recently visited

Added in API level 23

GestureDetector.OnContextClickListener

public static interface GestureDetector.OnContextClickListener

android.view.GestureDetector.OnContextClickListener
Known Indirect Subclasses


发生上下文点击时用于通知的侦听器。 当监听上下文的点击确保您拨打onGenericMotionEvent(MotionEvent)onGenericMotionEvent(MotionEvent)

Summary

Public methods

abstract boolean onContextClick(MotionEvent e)

发生上下文点击时通知。

Public methods

onContextClick

Added in API level 23
boolean onContextClick (MotionEvent e)

发生上下文点击时通知。

Parameters
e MotionEvent: The motion event that occurred during the context click.
Returns
boolean true if the event is consumed, else false

Hooray!