Class FixedActionMenuItem

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FixedActionMenuItem

        FixedActionMenuItem(Context context, int itemId, int drawableResId, int labelResId)
        Create fixed menu item.
        Parameters:
        context - Context used for retrieving drawable with drawableResId from resources.
        itemId - Id used to identify this menu item.
        drawableResId - Resource id of the menu item's icon.
        labelResId - resource id of the menu item's label.
      • FixedActionMenuItem

        FixedActionMenuItem(Context context, int itemId, int drawableResId, String label)
        Create fixed menu item.
        Parameters:
        context - Context used for retrieving drawable with drawableResId from resources.
        itemId - Id used to identify this menu item.
        drawableResId - Resource id of the menu item's icon.
        label - Label of the menu item.
      • FixedActionMenuItem

        FixedActionMenuItem(int itemId, Drawable icon, String label)
        Create fixed menu item.
        Parameters:
        itemId - Resource id representing menu item.
        icon - Icon for the menu item.
        label - Label of the menu item.
    • Method Detail