android.support.v4.internal.view
Interface SupportMenu

All Superinterfaces:
android.view.Menu
All Known Subinterfaces:
SupportSubMenu

public interface SupportMenu
extends android.view.Menu

Interface for managing the items in a menu. This version extends the one available in the framework to ensures that any necessary elements added in later versions of the framework, are available for all platforms.

See Also:
Menu

Field Summary
static int CATEGORY_MASK
          This is the part of an order integer that supplies the category of the item.
static int CATEGORY_SHIFT
          Bit shift of the category portion of the order integer.
static int USER_MASK
          This is the part of an order integer that the user can provide.
static int USER_SHIFT
          Bit shift of the user portion of the order integer.
 
Fields inherited from interface android.view.Menu
CATEGORY_ALTERNATIVE, CATEGORY_CONTAINER, CATEGORY_SECONDARY, CATEGORY_SYSTEM, FIRST, FLAG_ALWAYS_PERFORM_CLOSE, FLAG_APPEND_TO_GROUP, FLAG_PERFORM_NO_CLOSE, NONE
 
Method Summary
 
Methods inherited from interface android.view.Menu
add, add, add, add, addIntentOptions, addSubMenu, addSubMenu, addSubMenu, addSubMenu, clear, close, findItem, getItem, hasVisibleItems, isShortcutKey, performIdentifierAction, performShortcut, removeGroup, removeItem, setGroupCheckable, setGroupEnabled, setGroupVisible, setQwertyMode, size
 

Field Detail

USER_MASK

static final int USER_MASK
This is the part of an order integer that the user can provide.

See Also:
Constant Field Values

USER_SHIFT

static final int USER_SHIFT
Bit shift of the user portion of the order integer.

See Also:
Constant Field Values

CATEGORY_MASK

static final int CATEGORY_MASK
This is the part of an order integer that supplies the category of the item.

See Also:
Constant Field Values

CATEGORY_SHIFT

static final int CATEGORY_SHIFT
Bit shift of the category portion of the order integer.

See Also:
Constant Field Values