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!