Use action views and action providers

The AndroidX library's Toolbar provides different ways for users to interact with your app. Add and handle actions describes how to define an action, which can be a button or a menu item. This document describes how to add two versatile components:

  • An action view is an action that provides rich functionality within the app bar. For example, a search action view lets the user type their search text in the app bar without having to change activities or fragments.
  • An action provider is an action with its own customized layout. The action initially appears as a button or menu item; when the user taps the action, the action provider controls the action's behavior any way you define. For example, the action provider might respond to a tap by displaying a menu.

AndroidX provides several specialized action view and action provider widgets. For example, the SearchView widget implements an action view for entering search queries. The ShareActionProvider widget implements an action provider for sharing information with other apps. You can also define your own action views and action providers.

Add an action view

To add an action view, create an <item> element in the toolbar's menu resource, as described in Add and handle actions. Add one of the following attributes to the <item> element:

  • actionViewClass: the class of a widget that implements the action
  • actionLayout: a layout resource describing the action's components

Set the showAsAction attribute to "ifRoom|collapseActionView" or "never|collapseActionView". The collapseActionView flag indicates how to display the widget when the user isn't interacting with it. If the widget is on the app bar, the app displays the widget as an icon. If the widget is in the overflow menu, the app displays the widget as a menu item. When the user interacts with the action view, it expands to fill the app bar.

For example, the following code adds a SearchView widget to the app bar:

<item android:id="@+id/action_search"
     android:title="@string/action_search"
     android:icon="@drawable/ic_search"
     app:showAsAction="ifRoom|collapseActionView"
     app:actionViewClass="androidx.appcompat.widget.SearchView" />

If the user isn't interacting with the widget, the app displays the widget as the icon specified by android:icon. If there isn't room in the app bar, the app adds the action to the overflow menu.

An image showing a search bar with a leading and trailing icons.
Figure 1. Search bar with leading and trailing icons.

When the user taps the icon or menu item, the widget expands to fill the toolbar, letting the user interact with it.

An image showing a search view open once the search bar is focused.
Figure 2. Search view opens once the search bar is focused.

If you need to configure the action, do so in your activity's onCreateOptionsMenu() callback. You can get the action view's object reference by calling the getActionView() method. For example, the following code gets the object reference for the SearchView widget defined in the previous code example:

Kotlin

override fun onCreateOptionsMenu(menu: Menu?): Boolean {
    menuInflater.inflate(R.menu.main_activity_actions, menu)

    val searchItem = menu?.findItem(R.id.action_search)
    val searchView = searchItem?.actionView as SearchView

    // Configure the search info and add any event listeners.

    return super.onCreateOptionsMenu(menu)
}

Java

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.main_activity_actions, menu);

    MenuItem searchItem = menu.findItem(R.id.action_search);
    SearchView searchView =
            (SearchView) searchItem.getActionView();

    // Configure the search info and add any event listeners.

    return super.onCreateOptionsMenu(menu);
}

Respond to action view expansion

If the action's <item> element has a collapseActionView flag, the app displays the action view as an icon until the user interacts with the action view. When the user taps the icon, the built-in handler for onOptionsItemSelected() expands the action view. If your activity subclass overrides the onOptionsItemSelected() method, your override method must call super.onOptionsItemSelected() so the superclass can expand the action view.

If you want to do something when the action is expanded or collapsed, you can define a class that implements MenuItem.OnActionExpandListener, and pass a member of that class to setOnActionExpandListener(). For example, you might want to update the activity based on whether an action view is expanded or collapsed. The following code snippet shows how to define and pass a listener:

Kotlin

override fun onCreateOptionsMenu(menu: Menu?): Boolean {
    menuInflater.inflate(R.menu.options, menu)

    // Define the listener.
    val expandListener = object : MenuItem.OnActionExpandListener {
        override fun onMenuItemActionCollapse(item: MenuItem): Boolean {
            // Do something when the action item collapses.
            return true // Return true to collapse the action view.
        }

        override fun onMenuItemActionExpand(item: MenuItem): Boolean {
            // Do something when it expands.
            return true // Return true to expand the action view.
        }
    }

    // Get the MenuItem for the action item.
    val actionMenuItem = menu?.findItem(R.id.myActionItem)

    // Assign the listener to that action item.
    actionMenuItem?.setOnActionExpandListener(expandListener)

    // For anything else you have to do when creating the options menu,
    // do the following:

    return true
}

Java

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.options, menu);

    // Define the listener.
    OnActionExpandListener expandListener = new OnActionExpandListener() {
        @Override
        public boolean onMenuItemActionCollapse(MenuItem item) {
            // Do something when the action item collapses.
            return true;  // Return true to collapse action view.
        }

        @Override
        public boolean onMenuItemActionExpand(MenuItem item) {
            // Do something when it expands.
            return true;  // Return true to expand the action view.
        }
    };

    // Get the MenuItem for the action item.
    MenuItem actionMenuItem = menu.findItem(R.id.myActionItem);

    // Assign the listener to that action item.
    MenuItemCompat.setOnActionExpandListener(actionMenuItem, expandListener);

    // For anything else you have to do when creating the options menu,
    // do the following:

    return true;
}

Add an action provider

To declare an action provider, create an <item> element in the toolbar's menu resource, as described in Add and handle actions. Add an actionProviderClass attribute, and set it to the fully qualified class name for the action provider class.

For example, the following code declares a ShareActionProvider, which is a widget defined in the AndroidX library that lets your app share data with other apps:

<item android:id="@+id/action_share"
    android:title="@string/share"
    app:showAsAction="ifRoom"
    app:actionProviderClass="androidx.appcompat.widget.ShareActionProvider"/>

In this case, it's unnecessary to declare an icon for the widget, since ShareActionProvider provides its own graphics. If you are using a custom action, declare an icon.

Additional resources

  • See ShareActionProvider for an example of adding a share action to your top app bar.
  • See ActionProvider for more information about creating a custom action provider.