Parameter | Description |
---|---|
inflate(int menuRes, Menu menu) | Inflate a menu hierarchy from the specified XML resource. |
getMenuInflater () | Returns a MenuInflater with this context. |
onCreateOptionsMenu (Menu menu) | Initialize the contents of the Activity's standard options menu. You should place your menu items in to menu. |
onOptionsItemSelected (MenuItem item) | This method is called whenever an item in your options menu is selected |
To know more about Menus, read this. Hope it helps!