I am developing an android application in Eclipse. Eclipse sometimes imports R automatically so I just click (ctrl + shift + o) to find that import and delete it. But now, every time I delete it, it will bring it back no matter how many times I delete it.

Does anyone know how to solve this problem so I will be able to compile my project?

link|improve this question

2  
I suspect you want the r.java-file tag, not r. R is an open-source stats and numerical analysis package. – Hong Ooi Jan 23 at 1:00
2  
Why can't you compile it? – Dave Newton Jan 23 at 1:05
Please make sure there is no error in xml file, just clean and build the application,then include <your package>.R. – Hiren Dabhi Jan 23 at 5:22
feedback

3 Answers

Eclipse will try to construct an import statement for related types when you use auto-complete. This is a configurable option which you can disable under Eclipse's preferences dialog Java -> Editor -> Content Assist "Add import instead of qualified name" This is not configurable on a per package basis though.

I do wonder, however, what your objection is to importing your resource class. Is it that you just want references to R to always be fully qualified? I don't know of any technical reason why this might be preferable. If it's an issue of style, then I'd interject that it might be a misguided preference. Personally, I'd rather not have to regularly read source files that interspersed imported and fully-qualified class names. If your need is neither of these things, perhaps you could share more detail so that we can give you a better answer?

link|improve this answer
i am using the sample project Searchable dictionaryand it won't compile. On this line InputStream inputStream = resources.openRawResource(R.raw.definitions); it will throw an error R cannot be resolved to a variable and I get that error with everything I try to compile. Then I go to my imports and remove import R, and then it comes up again after I save – Iced_Earth Jan 25 at 1:16
Also, it seems that its not generating the R file... -.- this is the error message that im getting: eclipse.buildId=M20110909-1335 java.version=1.6.0_29 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_GB Framework arguments: -product org.eclipse.epp.package.java.product Command-line arguments: -os win32 -ws win32 -arch x86 -product org.eclipse.epp.package.java.product Error Wed Jan 25 01:34:42 GMT 2012 Failed to load properties file for project 'WiktionarySimple' – Iced_Earth Jan 25 at 1:37
Have you tried cleaning the project and rebuilding? Have you changed any of the settings in the Android plugin that may be preventing R from being generated? – yock Jan 25 at 13:16
feedback

Are you using any android.R classes,if yes remove it. If no try to add your app.R import manually before saving the file. I know this is annoying but thats how eclipse works for auto import....

you can also try removing automatically import settings from eclipse.

link|improve this answer
feedback
up vote 0 down vote accepted

It turns out that there was something wrong with my settings. Thanks everyone for there help.

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.