I've trying to load another developer's Android project into Eclipse. The import is successful, but I get several errors like this:
The method onClick(View) of type new View.OnClickListener(){} must override a superclass method
The offending lines look like this:
findViewById(R.id.random).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Any ideas?