Guest User

Untitled

a guest
Jun 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. `Menus` are common user interface component in Android. It provides consistent user experience at the cost of flexibility. You should use the `Menu` APIs to present user actions and other options in your activities.
  2.  
  3. There are 3 types of Menu:
  4.  
  5. ### Options menu
  6. The options menu is the primary collection of menu items for an activity. It's where you should place actions that have a global impact on the app, such as "Search," "Compose email," and "Settings."
  7.  
  8. ### Context menu and contextual action mode
  9. A context menu is a floating menu, like dialog, that appears when the user performs a long-click on an element. It provides actions that affect the selected content or context frame.
  10.  
  11. ### Popup menu
  12. A popup menu displays a list of items in a vertical list that's anchored to the view that invoked the menu. It's good for providing an overflow of actions that relate to specific content or to provide options for a second part of a command, the popup menu is for extended actions that relate to regions of content in your activity.
Add Comment
Please, Sign In to add comment