i am occurring error like: "The method onClick(View) of type oddg must override a superclass method" i am confused where exactly error is occurred.. can you please guide me,what exactly error is?????

    public class oddg extends Activity implements OnClickListener
    {
            ProgressDialog dialog;
            int increment;
            int maximum ;
            private static final String TAG = "ServicesDemo";




            @Override
            public void onCreate(Bundle savedInstanceState) 
            {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main1);
                Button startbtn = (Button) findViewById(R.id.startbtn);
                startbtn.setOnClickListener(this);

            }


            @Override
            public void onClick(View arg0)
            { }
    }

this is my code... Thanks in Advance-- Onkar

link|improve this question

62% accept rate
Did you use the @Override annotation on a method that doesn't have a signature matching one from a parent or implemented interface? At any rate, were you to post complete minimal code necessary to replicate your problem, folks would better be able to help you. – Thane Anthem Apr 25 '11 at 7:14
@thane i have edited my Q. to code,yes i have used @Override annotation,nut what i want to do for it,please guide me.. – Smith Apr 25 '11 at 7:20
feedback

4 Answers

up vote 19 down vote accepted

I think the problem is that you're compiler settings are set to Java 1.5 instead of Java 1.6. Since Java 1.6 the annotation @Override is not only possible for inherited methods from a superclass but also for implemented methods from an interface. But if your compiler is still set to 1.5 the problem is that he will check if you're overwriting a method from a super class. In your example this is not the case since you're implementing a method from an interface.

As a side note it would be good to follow Java Naming Conventions in your code. So all classes begin with an upper case letter.

link|improve this answer
i think so,but how to change setting of compiler???? – Smith Apr 25 '11 at 7:21
2  
If you're using Eclipse go to Windows -> Preferences -> Java -> Compiler and the change Compiler compliance level to 1.6 – Roflcoptr Apr 25 '11 at 7:23
yeah its working thnaks a alot...:) – Smith Apr 25 '11 at 7:51
thanks... this works! – Rocotilos Aug 9 '11 at 10:20
2  
I am getting same waring with java 1.7 . Is int it starnge ! – preetha Dec 29 '11 at 8:03
show 1 more comment
feedback

Read about @Override annotation. It means, that once you have annotated the method with @Override, the compiler checks if it really an overrided method, and shows an error if its not.

Also, you have to have Language Level 6 in order to use it with interface implementing methods. In IDEA you can do it via Project Setup.

link|improve this answer
feedback

I have same trouble and i fix it by: Open Project settings->Java Compiler->Enable Project Specific Settings must set to disable.

link|improve this answer
feedback

This isn't directly appropriate to this question but you will also get this error if you haven't declared implements OnClickListener on the class declaration.

// Wrong
public class aClass extends Activity {
}
// Right
public class aClass extends Activity implements OnClickListener {
}

This may seem dum to the more experienced coder but I'm new to this and it fooled me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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