I am going through tutorials, learning to use Eclipse for Android development.

I am having difficulty because the R.java file has dissapeared and I get an error in all files that reference it.

link|improve this question
feedback

6 Answers

Try to clean your project (Menu Project -> Clean...)

That should make Eclipse to regenerate and recompile R.java.

link|improve this answer
make sure Project -> Build Automatically is checked while cleaning project – Amit Patel Oct 4 '11 at 12:50
feedback

It could be that you accidentally imported android.R, be sure to check your imports and make sure it is not in that list.

link|improve this answer
feedback

Try cleaning your project first. If it is still missing then there is some error in your code. Check console window in eclipse. If console not visible try windows--> show view-->console. Find error from console window, remove that error and try your cleaning project again.

link|improve this answer
feedback

I had problem with this and nobody actually pointed this out. if your R.java is not generated, it might be windows 7 that is blocking it. Run Eclipse as admin.

link|improve this answer
feedback

One of the questions that appear often on StackOverflow and they have often no accepted answer, so propably each asker has different issue with different cause...

In my case, it was internal problem in ADP, which shown itself fully when I've tried to open main.xml: The project target (Android 2.2) was not properly loaded.

Restarting the Eclipse solved the problem, but in more malicious cases the reinstallation of the API's could be necessary...

link|improve this answer
feedback

..And you might also want to make sure you have Build Automatically option in the Project menu checked.

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.