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