• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Problem with onCreateOptionsMenu

ramesh_bh

Newbie
HI,

I want to override onCreateOptionsMenu, but when i put @Override notation my eclipse is showing error and saying delete @Override annotation,
here is my code:
@Override
public boolean onCreateOptionsMenu(Menu menu){
super.onCreateOptionsMenu(menu);
return true;
}
If i delete how my method will call ?

Please hlep,
 
Back
Top Bottom