开发者

R.java file not updating with UI element's id

开发者 https://www.devze.com 2022-12-23 21:16 出处:网络
I added some UI elements to the main.xml file in the res\\layout folder and when开发者_JAVA百科 I try to access them through the call, R.layout.my_uielement, the UI element that I created is not there

I added some UI elements to the main.xml file in the res\layout folder and when开发者_JAVA百科 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.


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.


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.


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


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.


After 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 a lot of errors, then made necessary changes and built the project(build it not clean)...I do not know whether clean and build performs the same job or not..but everytime i cleaned it , R.java used to go invisible...


Clean is working because it BUILD the project after cleaning. So the problem is ( at least it was in my case, because I switched off the Automatic Build a few days earlier ) that after you add an item or anything in a .xml file, the eclipse doesn't build it and can't refresh the R.java .


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.


None of these worked for me! The only way i can access an @+id/foo is by myPackage.R.id.foo.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号