MenuItemCompat.OnActionExpandListener

Added in 1.1.0
Deprecated in 1.1.0

public interface MenuItemCompat.OnActionExpandListener


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

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is collapsed.

abstract boolean

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is expanded.

Public methods

onMenuItemActionCollapse

Added in 1.1.0
Deprecated in 1.1.0
abstract boolean onMenuItemActionCollapse(MenuItem item)

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is collapsed.

Parameters
MenuItem item

Item that was collapsed

Returns
boolean

true if the item should collapse, false if collapsing should be suppressed.

onMenuItemActionExpand

Added in 1.1.0
Deprecated in 1.1.0
abstract boolean onMenuItemActionExpand(MenuItem item)

Called when a menu item with SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW is expanded.

Parameters
MenuItem item

Item that was expanded

Returns
boolean

true if the item should expand, false if expansion should be suppressed.