WearableActionDrawer.OnMenuItemClickListener

public static interface WearableActionDrawer.OnMenuItemClickListener

android.support.wearable.view.drawer.WearableActionDrawer.OnMenuItemClickListener


This interface is deprecated.
use androidx.wear.widget.drawer.WearableActionDrawerView provided by the Jetpack Wear library instead.

Interface responsible for receiving menu item click events if the items themselves do not have individual item click listeners.

Summary

Public methods

abstract boolean onMenuItemClick(MenuItem item)

Invoked when a menu item is clicked if the item itself did not already handle the event.

Public methods

onMenuItemClick

public abstract boolean onMenuItemClick (MenuItem item)

Invoked when a menu item is clicked if the item itself did not already handle the event.

Parameters
item MenuItem: MenuItem that was clicked

Returns
boolean true if the event was handled, false otherwise.