1

I've made menu's before, so I'm not a complete rookie, but I've encountered a problem where Eclipse tells me I have to remove @Override, but obviously if I do then my code won't run to inflate the menu. the code is:

@Override
public boolean OnCreateOptionsMenu(Menu menu){
   MenuInflater inflater = getMenuInflater();
   inflater.inflate(R.menu.map_menu, menu);
   return super.onCreateOptionsMenu(menu);
}
Victor KP
  • 437
  • 3
  • 10

2 Answers2

9

The "on" in "OnCreateOptionsMenu" should not be capitalized

Matt
  • 5,461
  • 7
  • 36
  • 43
4

You can add overridden methods in eclipse by going Source > Override/implement methods and then check the methods you want to override,it helps with the spelling and all.

M_K
  • 3,247
  • 6
  • 30
  • 47