View.OnLongClickListener
public
static
interface
View.OnLongClickListener
android.view.View.OnLongClickListener
|
Known Indirect Subclasses
|
Interface definition for a callback to be invoked when a view has been clicked and held.
Summary
Public methods |
abstract
boolean
|
onLongClick(View v)
Called when a view has been clicked and held.
|
Public methods
onLongClick
boolean onLongClick (View v)
Called when a view has been clicked and held.
Parameters |
v |
View :
The view that was clicked and held. |
Returns |
boolean |
true if the callback consumed the long click, false otherwise.
|