I added some UI elements to the main.xml file in the res\layout folder and when I try to access them through the call, R.layout.my_uielement, the UI element that I created is not there. Even when I add a new xml file with UI elements, it still doesn't show up in the R.layout class. I have made checked the ids on them and they have the correct format (I think): android:id="@+id/my_button". What could be the problem? Do I need to compile the code first?
UPDATE:
I have already tried adb kill-server then adb start-server. It doesn't seem to help. I have also tried R.id.my_uielement, it doesn't register either.

link|improve this question

1  
Have you tried Clean Project in Eclipse? Are the xml files in the right folder? – Pentium10 Mar 21 '10 at 13:46
yes they are in the res\layout folder. Clean Project doesn't work either. – Mohit Deshpande Mar 21 '10 at 13:55
Upgrade Eclipse ADT plugins. Copy the source into a new folder, and import into a new project. Try recreating the XML file you have. Anyway post the answer if you find out. – Pentium10 Mar 21 '10 at 14:48
Had the same problem, running "Clean Project" solved it. – Sanjay Manohar Jul 23 '11 at 19:07
feedback

6 Answers

up vote 9 down vote accepted

This may not be the case for you, but sometimes when I use something from the android.R package (default android resources) and I use it in my class before making reference to anything from my own resource package, Eclipse adds the import android.R; statement in my imports. This will conflict with the default behavior of implicitly looking in your package's resources.

Check your import statements for import Android.R;. If it's there, remove it. And, if you're using anything from android.R, fully qualify it when you use it in code.

link|improve this answer
feedback

Use R.id.your_ui_element, not R.layout.your_element

link|improve this answer
That doesn't work either. – Mohit Deshpande Mar 21 '10 at 13:55
feedback

I faced this problem too. The R.java was neither generated nor updated.

If R.java is not generated when you create the project, run your 'empty` project. An R.java with references to resources will be automatically generated.

If R.java is not getting updated, Check for updates in Help -> Check for Updates in Eclipse and update your SDK and ADT if required.

link|improve this answer
That helped me, in conjunction with cleaning project. – Igor G. Nov 10 '11 at 18:43
@IgorG. I'm glad it helped. I spent 2 days before I came across this question on stackoverflow – Pramod Nov 11 '11 at 5:30
feedback

Clean project works fine. In Eclipse if you just change some xml components, it doesn't always generate a new R file. Cleaning does it.

link|improve this answer
feedback

Aftr 2 days i found a way to fix it...

i had saved half done project in my mail, so when R.java vanished i just replaced it with the old R.java file, this fixed lot of errors, then made necessary changes and build the project(build it not clean)...i don't know whether clean and build performs the same job or not..but everytime i cleaned it , r.java used to go invisible...

link|improve this answer
feedback

I've noticed that my R.java file is not always being properly updated when I add items to my strings.xml file or elsewhere. If I use a new value I added like R.string.newString the actual integer value might still be pointing to R.string.oldString or whatever (it seems to usually be the element directly above or below the new element in strings.xml but I haven't nailed down the pattern for sure yet).

You're not supposed to modify the R.java file, but it doesn't say anything about deleting it (not that I've seen, anyway). I've found that deleting R.java usually fixes my resource-related problems because Eclipse immediately regenerates the file with the integer values properly assigned.

Please note, I'm very much a beginner at Eclipse so I may not understand the consequences of deleting R.java but it seems to be working well for me so far. If what I'm doing is very bad, please let me know. Thanks!

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.