Reputation: 31
I placed a button and set its id to @+id/ourButton
.
Then on the MainActivity.java:
Button myButton = (Button) findViewById(R.id.ourButton);
It looks R.id.ourButton
is undeclared or not existing.
Upvotes: 2
Views: 59
Reputation: 3249
Upvotes: 0
Reputation: 1814
You can either do a clean on your project or delete your R file, which will then be regenerated.
Upvotes: 1