/* * Copyright (C) 2011 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.view; import android.content.Context; /** * 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 {@link MenuItem} and in such a * case it will be responsible for creating the action view that appears in the * {@link 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. *

*

* There are two ways for using an action provider for creating and handling of action views: *

*

* * @see MenuItem#setActionProvider(ActionProvider) * @see MenuItem#getActionProvider() */ public abstract class ActionProvider { /** * Creates a new instance. * * @param context Context for accessing resources. */ public ActionProvider(Context context) { } /** * Factory method for creating new action views. * * @return A new action view. */ public abstract View onCreateActionView(); /** * 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 none of the callbacks for processing menu selection has handled * the event. *

*

* A menu item selection is processed in the following order: *

*

*

* The default implementation does not perform any action. *

* * @param actionView A view created by {@link #onCreateActionView()}. */ public void onPerformDefaultAction(View actionView) { } }