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 get this message on the following code:

public boolean onOptionItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.x:
            Log.i(Home, "klick");

        case R.id.y:
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}

And I always get this error:

The method onOptionItemSelected(MenuItem) of type Home must override a superclass method

I've searched all round the internet, there were some posts on stackoverflow, BUT! My compiler is set to 1.6 and there is no exception for my project.

Why must it override a superclass method? Isn't this method a superclass method, I use super.onOptions...?

I want to have a @Override because I have seen it somewhere and my code doesn't seem to work without.

This is my first question here, so please don't be hard if I forgot something.

share|improve this question

1 Answer

up vote 4 down vote accepted

Try onOptionsItemSelected(..)

You are missing the 's', you have onOptionItemSelected(..)

share|improve this answer
3  
eagle eye...... – dymmeh Nov 5 '12 at 22:40
Yeah that worked! Thank you and your eagle eye :D – Lesik2008 Nov 5 '12 at 22:55
1  
You are welcome. That is why @Override is so useful. It spots typos for you. Otherwise you would spend ages trying to find out why what you thought was a valid callback method, never got triggered. – NickT Nov 5 '12 at 22:59

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.