to top
Android APIs
Added in API level 14
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

? Examples
abstract boolean onMenuItemActionCollapse( MenuItem item)
Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is collapsed.

? Examples
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)

Added in API level 14

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)

Added in API level 14

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.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.