# Print output for @column tags ?>
public
static
interface
MenuItem.OnMenuItemClickListener
| android.view.MenuItem.OnMenuItemClickListener |
Interface definition for a callback to be invoked when a menu item is clicked.
Public methods | |
|---|---|
abstract
boolean
|
onMenuItemClick(MenuItem item)
Called when a menu item has been invoked. |
public abstract boolean onMenuItemClick (MenuItem item)
Called when a menu item has been invoked. This is the first code that is executed; if it returns true, no other callbacks will be executed.
| Parameters | |
|---|---|
item |
MenuItem: The menu item that was invoked. |
| Returns | |
|---|---|
boolean |
Return true to consume this click and prevent others from executing. |