Methods Summary |
---|
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 {@link #onPrepareSubMenu(SubMenu)}
after the call to {@link #onPerformDefaultAction()} and before a submenu is
displayed to the user.
return false;
|
public boolean | isVisible()If {@link #overridesItemVisibility()} returns true, the return value of this method
will help determine the visibility of the {@link 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.
return true;
|
public abstract View | onCreateActionView()Factory method called by the Android framework to create new action views.
This method has been deprecated in favor of {@link #onCreateActionView(MenuItem)}.
Newer apps that wish to support platform versions prior to API 16 should also
implement this method to return a valid action view.
|
public View | onCreateActionView(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
{@link #onCreateActionView()}, overriding this method for devices running API 16 or later
is recommended but optional. The default implementation calls {@link #onCreateActionView()}
for compatibility with applications written for older platform versions.
return onCreateActionView();
|
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 {@link MenuItem.OnMenuItemClickListener#onMenuItemClick
MenuItem.OnMenuItemClickListener.onMenuItemClick}.
-
Receiving a call to {@link android.app.Activity#onOptionsItemSelected(MenuItem)
Activity.onOptionsItemSelected(MenuItem)}
-
Receiving a call to {@link android.app.Fragment#onOptionsItemSelected(MenuItem)
Fragment.onOptionsItemSelected(MenuItem)}
-
Launching the {@link android.content.Intent} set via
{@link MenuItem#setIntent(android.content.Intent) MenuItem.setIntent(android.content.Intent)}
-
Invoking this method.
The default implementation does not perform any action and returns false.
return false;
|
public void | onPrepareSubMenu(SubMenu subMenu)Called to prepare an associated submenu for the menu item backed by this ActionProvider.
if {@link #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.
|
public boolean | overridesItemVisibility()The result of this method determines whether or not {@link #isVisible()} will be used
by the {@link MenuItem} this ActionProvider is bound to help determine its visibility.
return false;
|
public void | refreshVisibility()If this ActionProvider is associated with an item in a menu,
refresh the visibility of the item based on {@link #overridesItemVisibility()} and
{@link #isVisible()}. If {@link #overridesItemVisibility()} returns false, this call
will have no effect.
if (mVisibilityListener != null && overridesItemVisibility()) {
mVisibilityListener.onActionProviderVisibilityChanged(isVisible());
}
|
public void | setSubUiVisibilityListener(android.view.ActionProvider$SubUiVisibilityListener listener)
mSubUiVisibilityListener = listener;
|
public void | setVisibilityListener(android.view.ActionProvider$VisibilityListener listener)Set a listener to be notified when this ActionProvider's overridden visibility changes.
This should only be used by MenuItem implementations.
if (mVisibilityListener != null) {
Log.w(TAG, "setVisibilityListener: Setting a new ActionProvider.VisibilityListener " +
"when one is already set. Are you reusing this " + getClass().getSimpleName() +
" instance while it is still in use somewhere else?");
}
mVisibilityListener = listener;
|
public 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.
if (mSubUiVisibilityListener != null) {
mSubUiVisibilityListener.onSubUiVisibilityChanged(isVisible);
}
|