ActionProvider
public abstract class ActionProvider
MediaRouteActionProvider |
The media route action provider displays a |
ShareActionProvider |
Provides a share action, which is suitable for an activity's app bar. |
This class is a mediator for accomplishing a given task, for example sharing a file. It is responsible for creating a view that performs an action that accomplishes the task. This class also implements other functions such a performing a default action.
An ActionProvider can be optionally specified for a android.view.MenuItem and in such a case it will be responsible for creating the action view that appears in the android.app.ActionBar as a substitute for the menu item when the item is displayed as an action item. Also the provider is responsible for performing a default action if a menu item placed on the overflow menu of the ActionBar is selected and none of the menu item callbacks has handled the selection. For this case the provider can also optionally provide a sub-menu for accomplishing the task at hand.
There are two ways for using an action provider for creating and handling of action views:
- Setting the action provider on a
android.view.MenuItemdirectly by callingsetActionProvider. - Declaring the action provider in the menu XML resource. For example:
<item android:id="@+id/my_menu_item" android:title="@string/my_menu_item_title" android:icon="@drawable/my_menu_item_icon" android:showAsAction="ifRoom" android:actionProviderClass="foo.bar.SomeActionProvider" />
To create a custom action provider, extend ActionProvider and implement its callback methods as necessary. In particular, implement the following methods:
ActionProvider()constructor- This constructor is passed the application context. You should save the context in a member field to use in the other callback methods.
onCreateActionView(MenuItem)
- The system calls this method when the action provider is created. You define the action provider's layout through the implementation of this method. Use the context acquired from the constructor to instantiate a
android.view.LayoutInflaterand inflate your action provider's layout from an XML resource, then hook up event listeners for the view's components. For example:public View onCreateActionView(MenuItem forItem) { // Inflate the action provider to be shown on the action bar. LayoutInflater layoutInflater = LayoutInflater.from(mContext); View providerView = layoutInflater.inflate(R.layout.my_action_provider, null); ImageButton button = (ImageButton) providerView.findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { // Do something... } }); return providerView; }
-
The system calls this method when the user selects a menu item from the action overflow. The action provider should perform a default action for the menu item. The system does not call this method if the menu item opens a submenu.
If your action provider presents a submenu through the
onPrepareSubMenu()callback, the submenu appears even if the action provider is in the overflow menu. Thus, the system never callsonPerformDefaultAction()if there is a submenu.Note: An activity or a fragment that implements
onOptionsItemSelected()can override the action provider's default behavior (unless it uses a submenu) by handling the item-selected event and returningtrue. In this case, the system does not callonPerformDefaultAction().
| See also | |
|---|---|
setActionProvider |
|
getActionProvider |
Summary
Nested types |
|---|
public interface ActionProvider.VisibilityListenerListens to changes in visibility as reported by |
Public constructors |
|---|
ActionProvider(@NonNull Context context)Creates a new instance. |
Public methods |
|
|---|---|
@NonNull Context |
Gets the context associated with this action provider. |
boolean |
Determines if this ActionProvider has a submenu associated with it. |
boolean |
If |
abstract @NonNull View |
Factory method for creating new action views. |
@NonNull View |
onCreateActionView(@NonNull MenuItem forItem)Factory method called by the Android framework to create new action views. |
boolean |
Performs an optional default action. |
void |
onPrepareSubMenu(@NonNull SubMenu subMenu)Called to prepare an associated submenu for the menu item backed by this ActionProvider. |
boolean |
The result of this method determines whether or not |
void |
If this ActionProvider is associated with an item in a menu, refresh the visibility of the item based on |
void |
Set a listener to be notified when this ActionProvider's overridden visibility changes. |
Public constructors
Public methods
getContext
public @NonNull Context getContext()
Gets the context associated with this action provider.
hasSubMenu
public 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 after the call to onPerformDefaultAction and before a submenu is displayed to the user.
| Returns | |
|---|---|
boolean |
true if the item backed by this provider should have an associated submenu |
isVisible
public boolean isVisible()
If overridesItemVisibility returns true, the return value of this method will help determine the visibility of the MenuItem this 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 | |
|---|---|
boolean |
true if the MenuItem this ActionProvider is bound to is visible, false if it is invisible. The default implementation returns true. |
onCreateActionView
public abstract @NonNull View onCreateActionView()
Factory method for creating new action views.
onCreateActionView
public @NonNull View onCreateActionView(@NonNull MenuItem forItem)
Factory method called by the Android framework to create new action views. This method returns a new action view for the given MenuItem.
If your ActionProvider implementation overrides the deprecated no-argument overload onCreateActionView, overriding this method for devices running API 16 or later is recommended but optional. The default implementation calls onCreateActionView for compatibility with applications written for older platform versions.
onPerformDefaultAction
public 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
onOptionsItemSelectedFragmentActivity.onOptionsItemSelected(MenuItem)} - Receiving a call to
onOptionsItemSelectedFragment.onOptionsItemSelected(MenuItem)} - Launching the
android.content.Intentset viaMenuItem.setIntent(android.content.Intent) - Invoking this method.
The default implementation does not perform any action and returns false.
onPrepareSubMenu
public void onPrepareSubMenu(@NonNull SubMenu subMenu)
Called 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.
overridesItemVisibility
public boolean overridesItemVisibility()
The result of this method determines whether or not isVisible will be used by the MenuItem this ActionProvider is bound to help determine its visibility.
| Returns | |
|---|---|
boolean |
true if this ActionProvider overrides the visibility of the MenuItem it is bound to, false otherwise. The default implementation returns false. |
| See also | |
|---|---|
isVisible |
refreshVisibility
public void refreshVisibility()
If this ActionProvider is associated with an item in a menu, refresh the visibility of the item based on overridesItemVisibility and isVisible. If overridesItemVisibility returns false, this call will have no effect.
setVisibilityListener
public void setVisibilityListener(
@Nullable ActionProvider.VisibilityListener listener
)
Set a listener to be notified when this ActionProvider's overridden visibility changes. This should only be used by MenuItem implementations.
| Parameters | |
|---|---|
@Nullable ActionProvider.VisibilityListener listener |
listener to set |