I have the R.java file generated but I'm still getting "R cannot be resolved" all throughout my code. Can anyone help? It is not a problem with the R.java file and there are no problems in the xml files

link|improve this question
1  
here is the same problem. - stackoverflow.com/q/885009/601868 – Natali Feb 13 at 13:39
1  
I removed the r tag, since this question is not about the R-project. – Andrie Feb 13 at 14:07
feedback

4 Answers

A couple of options:

  • Make sure you import your R into the class (com.myactivity.R instead of android.R)
  • Sometimes other errors can prevent the R from generating. Fix those first, then R will regenerate and the R problems will disappear.
  • You could also try to do a clean of the project. In Eclipse this would be Project - Clean...
link|improve this answer
Well I have R.java, nothing is keeping that from generating. Also I've tried cleaning it and that did nothing. – user1185205 Feb 16 at 13:27
feedback

Try to Delete the R.Java, it will be automatically recreated & the issue will be resolved.

link|improve this answer
feedback
  1. Check all your XML files
  2. Clean your project (Project > clean)
link|improve this answer
feedback

might be a problem in one of the XML files - have a look into the console - often errors show up there and tell you where to look

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.