I have downloaded code from google codes but when I import that project in my eclipse IDE it does not generate R.Java file.I searched many blogs and forums and tried many things like cleaning ,rebuilding, creating project from existing source etc but still facing the problem.Some people mentioned that it is sometimes caused by the SVN client software,but none of them mentioned any solution for that.I will be very thankful to you guys if you download it yourself and find what is the exact problem.

link|improve this question

75% accept rate
have you tried removing the "gen" folder? – vanleeuwenbram Nov 29 '11 at 21:58
there is no "gen" folder at all – Waseem Nov 29 '11 at 22:31
any update to this? is the issue resolved? – owen gerig Nov 30 '11 at 17:39
run the project if even if you don't have the R.java file and the build failed. A new R.java will be created – Pramod Dec 2 '11 at 11:30
feedback

3 Answers

up vote 1 down vote accepted

In general, to make it work:

  1. import project into eclipse (File -> Import -> General -> Existing Projects into Workspace)
  2. in Eclipse, Manually create gen folder and add it as source folder (right click on your project, Build Path -> Configure Build Path -> Add folder)
  3. Clean your project, you suppose to get R.java generated

But It doesn't, Why?

Because there are some compile error (or bug?) regarding to the xml file in res, so R is not genetared (I've tested on my Mac):
In res/values/styles.xml: commented out the following:

<style name="iWindowTitleBackground" parent="android:WindowTitleBackground">    
  <item name="android:background">@drawable/title_bar</item>        
</style>

In res/values/themes.xml: comment out the following:

<item name="android:windowTitleBackgroundStyle">@style/iWindowTitleBackground</item>

Then do a Project -> Clean, you should get R.java generated.

There is bug reported that parent="android:WindowTitleBackground" cannot be resolved in some operating system, check out here for more details.

link|improve this answer
1  
i forgot that ya, it doesnt get generated if there are errors. the whole R.java thing was a pain in the ass and a stupid problem when i dealt with it. its not really the developers fault just a bug in the sdk :( – owen gerig Nov 29 '11 at 23:53
feedback

When i come across this problem I delete the gen folder and it will be recreated with all the r files

link|improve this answer
it is as i stated below. thats why when you do findById and start typing r.id you see android.r and just r. and your project files are in the second variable R. just for future reference. – owen gerig Nov 29 '11 at 22:02
feedback

you will see at the top of your file it says import android.r or r.java i forget. you need to remove this line, clean the project, and rerun.
basically android uses R to reference items within your project. but when that import statement is there it overrides looking at your project directories and uses androids

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.