Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am try'g to create an Simple application in Android. In one of my module I have to call the options menu that appears underneath the screen, when I click the menu button in the Android emulator.

Since I have to invoke a new activity, when one of my menu items in option menu is tapped, I put @Override before the method onOptionsSelectedItem(MenuItem menuitem) in order to implement my own definition instead of calling the parent activity.

Once I put the annotation @Override before onOptionsSelectedItem(MenuItem menuitem) method, its showing the following error...(in compile time itself)

The method onOptionsitemSelected(MenuItem) of type SingleShooterRecordShots (MyClass) must override a superclass method....

share|improve this question
Is your class extending Activity? – Falmarri Jul 29 '10 at 4:48
This is the response for my own post , i changed the project properties java compiler compliance level from 1.5 t0 1.6,then that error got vanished....Thanks lot... – Nandagopal T Jul 29 '10 at 4:50
Thanks Falmarri for your response,,,Keep helping... – Nandagopal T Jul 29 '10 at 4:51

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.