Activity.OnOptionsItemSelected(IMenuItem) Method

Definition

This hook is called whenever an item in your options menu is selected.

[Android.Runtime.Register("onOptionsItemSelected", "(Landroid/view/MenuItem;)Z", "GetOnOptionsItemSelected_Landroid_view_MenuItem_Handler")]
public virtual bool OnOptionsItemSelected (Android.Views.IMenuItem item);
[<Android.Runtime.Register("onOptionsItemSelected", "(Landroid/view/MenuItem;)Z", "GetOnOptionsItemSelected_Landroid_view_MenuItem_Handler")>]
abstract member OnOptionsItemSelected : Android.Views.IMenuItem -> bool
override this.OnOptionsItemSelected : Android.Views.IMenuItem -> bool

Parameters

item
IMenuItem

The menu item that was selected.

Returns

boolean Return false to allow normal menu processing to proceed, true to consume it here.

Attributes

Remarks

This hook is called whenever an item in your options menu is selected. The default implementation simply returns false to have the normal processing happen (calling the item's Runnable or sending a message to its Handler as appropriate). You can use this method for any items for which you would like to do processing without those other facilities.

Derived classes should call through to the base class for it to perform the default menu handling.

Java documentation for android.app.Activity.onOptionsItemSelected(android.view.MenuItem).

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.

Applies to

See also