Class ActionProvider
An ActionProvider can be optionally specified for a MenuItem and will be
 responsible for creating the action view that appears in the ActionBar
 in place of a simple button in the bar. When the menu item is presented in a way that
 does not allow custom action views, (e.g. in an overflow menu,) the ActionProvider
 can perform a default action.
There are two ways to use an action provider:
- 
 Set the action provider on a MenuItemdirectly by callingMenuItem.setActionProvider(ActionProvider).
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic interfacestatic interfaceListens to changes in visibility as reported byrefreshVisibility().
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanDetermines if this ActionProvider has a submenu associated with it.booleanIfoverridesItemVisibility()returns true, the return value of this method will help determine the visibility of theMenuItemthis ActionProvider is bound to.abstract ViewonCreateActionView(MenuItem menuItem) Factory method called by the Android framework to create new action views.booleanPerforms an optional default action.voidonPrepareSubMenu(SubMenu subMenu) Called to prepare an associated submenu for the menu item backed by this ActionProvider.booleanThe result of this method determines whether or notisVisible()will be used by theMenuItemthis ActionProvider is bound to help determine its visibility.voidIf this ActionProvider is associated with an item in a menu, refresh the visibility of the item based onoverridesItemVisibility()andisVisible().voidreset()voidvoidSet a listener to be notified when this ActionProvider's overridden visibility changes.voidsubUiVisibilityChanged(boolean isVisible) Notify the system that the visibility of an action view's sub-UI such as an anchored popup has changed.
- 
Constructor Details- 
ActionProviderpublic ActionProvider()Creates a new instance. ActionProvider classes should always implement a constructor that takes a single Context parameter for inflating from menu XML.
 
- 
- 
Method Details- 
onCreateActionViewFactory method called by the Android framework to create new action views. This method returns a new action view for the given MenuItem.- Parameters:
- menuItem- MenuItem to create the action view for
- Returns:
- the new action view
 
- 
overridesItemVisibilitypublic boolean overridesItemVisibility()The result of this method determines whether or notisVisible()will be used by theMenuItemthis ActionProvider is bound to help determine its visibility.- Returns:
- true if this ActionProvider overrides the visibility of the MenuItem it is bound to, false otherwise. The default implementation returns false.
- See Also:
 
- 
isVisiblepublic boolean isVisible()IfoverridesItemVisibility()returns true, the return value of this method will help determine the visibility of theMenuItemthis ActionProvider is bound to.If the MenuItem's visibility is explicitly set to false by the application, the MenuItem will not be shown, even if this method returns true. - Returns:
- true if the MenuItem this ActionProvider is bound to is visible, false if it is invisible. The default implementation returns true.
 
- 
refreshVisibilitypublic void refreshVisibility()If this ActionProvider is associated with an item in a menu, refresh the visibility of the item based onoverridesItemVisibility()andisVisible(). IfoverridesItemVisibility()returns false, this call will have no effect.
- 
onPerformDefaultActionpublic boolean onPerformDefaultAction()Performs an optional default action.For the case of an action provider placed in a menu item not shown as an action this method is invoked if previous callbacks for processing menu selection has handled the event. A menu item selection is processed in the following order: - 
 Receiving a call to MenuItem.OnMenuItemClickListener.onMenuItemClick.
- 
 Receiving a call to 
invalid referenceFragment.onOptionsItemSelected(MenuItem)
- Invoking this method.
 The default implementation does not perform any action and returns false. 
- 
 Receiving a call to 
- 
hasSubMenupublic boolean hasSubMenu()Determines if this ActionProvider has a submenu associated with it.Associated submenus will be shown when an action view is not. This provider instance will receive a call to onPrepareSubMenu(SubMenu)after the call toonPerformDefaultAction()and before a submenu is displayed to the user.- Returns:
- true if the item backed by this provider should have an associated submenu
 
- 
onPrepareSubMenuCalled to prepare an associated submenu for the menu item backed by this ActionProvider.if hasSubMenu()returns true, this method will be called when the menu item is selected to prepare the submenu for presentation to the user. Apps may use this to create or alter submenu content right before display.- Parameters:
- subMenu- Submenu that will be displayed
 
- 
subUiVisibilityChangedpublic void subUiVisibilityChanged(boolean isVisible) Notify the system that the visibility of an action view's sub-UI such as an anchored popup has changed. This will affect how other system visibility notifications occur.
- 
setSubUiVisibilityListener
- 
setVisibilityListenerSet a listener to be notified when this ActionProvider's overridden visibility changes. This should only be used by MenuItem implementations.- Parameters:
- listener- listener to set
 
- 
reset@Internal public void reset()
 
-