When we create a Android application in eclipse, it creates an activity class for us. Immediate thing is you get an compile time warning like “R cannot be resolved” at
setContentView(R.layout.main);
This is due to not building our project. Clean and Build – that will solve your issue!
Advertisements