Activity.OnPrepareOptionsMenu(IMenu) Method

Definition

Prepare the Screen's standard options menu to be displayed.

[Android.Runtime.Register("onPrepareOptionsMenu", "(Landroid/view/Menu;)Z", "GetOnPrepareOptionsMenu_Landroid_view_Menu_Handler")]
public virtual bool OnPrepareOptionsMenu (Android.Views.IMenu? menu);
[<Android.Runtime.Register("onPrepareOptionsMenu", "(Landroid/view/Menu;)Z", "GetOnPrepareOptionsMenu_Landroid_view_Menu_Handler")>]
abstract member OnPrepareOptionsMenu : Android.Views.IMenu -> bool
override this.OnPrepareOptionsMenu : Android.Views.IMenu -> bool

Parameters

menu
IMenu

The options menu as last shown or first initialized by onCreateOptionsMenu().

Returns

You must return true for the menu to be displayed; if you return false it will not be shown.

Attributes

Remarks

Prepare the Screen's standard options menu to be displayed. This is called right before the menu is shown, every time it is shown. You can use this method to efficiently enable/disable items or otherwise dynamically modify the contents.

The default implementation updates the system menu items based on the activity's state. Deriving classes should always call through to the base class implementation.

Java documentation for android.app.Activity.onPrepareOptionsMenu(android.view.Menu).

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