Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static interface

MenuItem.OnActionExpandListener

android.view.MenuItem.OnActionExpandListener

Class Overview

Interface definition for a callback to be invoked when a menu item marked with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is expanded or collapsed.

Summary

Public Methods
abstract boolean onMenuItemActionCollapse ( MenuItem item)
Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is collapsed.
abstract boolean onMenuItemActionExpand ( MenuItem item)
Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is expanded.

Public Methods

public abstract boolean onMenuItemActionCollapse ( MenuItem item)

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is collapsed.

Parameters
item Item that was collapsed
Returns
  • true if the item should collapse, false if collapsing should be suppressed.

public abstract boolean onMenuItemActionExpand ( MenuItem item)

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is expanded.

Parameters
item Item that was expanded
Returns
  • true if the item should expand, false if expansion should be suppressed.