Menu Item Flashcards
1
Q
Tell me all of the steps to add a menu Item
A
- Create a resource XML file
- Override onCreateOptionsMenu
- Inflate the menu inside it
- Override onOptionsItemSelected
- Implement what should be happening clicking on that item => to recognize which one is clicked get the item id
- Make that activity
2
Q
How do you inlfate a menu ??
A
getMenuInflater().inflate(R.menu.main, menu);