Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just downloaded and installed the new Android SDK. I wanted to create a simple application to test drive it.

The wizard created this code:

package eu.mauriziopz.gps;

import android.app.Activity;
import android.os.Bundle;

public class ggps extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

but Eclipse gives me the error

R cannot be resolved

on line

setContentView(R.layout.main);

Why?

PS: I do have an XML file named main.xml under res/layout/.

share|improve this question
show 2 more comments

64 Answers

1 2 3

After tracking down this problem as well, I found this note in the Android documentation:

http://source.android.com/source/using-eclipse.html

*Note: Eclipse sometimes likes to add an "import android.R" statement at the top of your files that use resources, especially when you ask Eclipse to sort or otherwise manage imports. This will cause your make to break. Look out for these erroneous import statements and delete them.*

While going through the Android sample tutorials, I would often use the Ctrl + Shift + O command to "Organize Imports" and generate any missing import statements. Sometimes this would generate the incorrect import statement which would hide the R.java class that is automatically generated when you build.

share|improve this answer
5  
This happens as well, but a bunged up layout file can also cause it. – GHz May 20 '12 at 2:40
20  
This classic bug has been in Eclipse for YEARS and never gets fixed. 1000s of people face this same problem. – Carol Jun 15 '12 at 5:58
6  
Eclipse developers, please remove this $£%&"$&/ bug! Google developers, please give me a £$&$"%& Android suite similar to Xcode for the iPhone! – Abramodj Oct 28 '12 at 18:30
1  
@2-Stroker : It is a bug. It happened to me when I created a branch new andorid project via the eclipse WIZARD and it complained about 'R cannot be resolved'. I had to comment out the setContentView & getMenuInflater lines and then eclipse generated the R.java after which I could uncomment setContentView & getMenuInflator. Abramodj is right, the environment has serious problem if even your 'hello world' example does not compile. Fix it google! – CF_Maintainer Mar 17 at 17:28
show 5 more comments

Each time I had a problem with R not been generated, or even disappeared, this was due to some problem in the XML layout file that prevented the application from being built.

share|improve this answer
4  
+1 for this. I had an older styles.xml file with parent="android:WindowTitleBackground" and it was breaking my build and preventing anything generated to "gen". The error wasn't actually reported except in the Console window right when I first opened the project. – Scott Persinger Mar 8 '12 at 0:56
2  
exactly, if you copied layouts from another project, and are getting this, looks for missing drawables - that will fix it instantly! – ber4444 May 22 '12 at 11:45
show 4 more comments

Whenever you get

R cannot be resolved

then check for the /res directory and there must be some file that have some error in it and that is preventing the application from being built. For example, it may be a layout file or it may be due to some missing resource is, but you already defined it in the XML file.

If you have any additional, even unused (!) or unreferenced (!) images in a folder like res/drawables-mdpi which do not comply to the file naming conventions (may contain only [a-z0-9_.]), the R.java class might not generate, causing the chain of events all the other posts referred to. Hope it helps!

share|improve this answer
7  
How can you check for errors? I get nothing in my console when building/running – Vincent Apr 11 '11 at 9:33
show 5 more comments

my project have include a r.java.at the beginning ,R.layout.main work good.But,after adding some code it doesn't work,and the error is R.layout.main can't resolved.what's the problem?

Look at your imports. Chances are that the line:

import android.R;

will be there. If that's the case, remove it, so that your project will resolve R not with the default Android Resources class, but with the one auto-generated from your /res/ folder.

share|improve this answer
1  
Thanks @Dimitar,that fixed my issue! Eclipse and the auto-import feature seem to have gotten me by adding that import line automatically. – Steven Jun 8 '10 at 3:12
3  
I've also had similar issues when I named a layout using capital letters – Travis Oct 24 '10 at 20:46
show 2 more comments

R.java is a file that the Android Eclipse plugins creates while building your application. R.java is created under the "gen" directory. This file is generated from the information in the "res" directory. If you run select "Project" -> "Clean..." on the Eclipse menu, it will remove and then regenerate the R.java file.

The problem "R cannot be resolved" happens when you change your package name in the AndroidManifest.xml file. It uses your Android package name to create a subdirectory under the "gen" directory where it stores the R.java file.

Eclipse may have problems executing clean, because it is confused about where the R.java file is when you have changed the Android package name. You can either rename the subdirectory under gen to match your new package name, or you can change your package name back to the old name. Do the clean and then change the package name to the new name you want. This works best if you stop Eclipse from trying to build while you are changing the package name. Under the "Project" menu uncheck the option to "Build Automatically" and also when the "Clean..." dialog asks if it should "Start a build immediately" uncheck the box so it doesn't try to build while you are changing the package name. After you have changed the name you can turn "Build Automatically" back on again.

Note that if your AndroidManifest.xml file package name does not match your Java package name, Eclipse will end up automatically adding an "import <your Android package name>.R;" line in all your .java files that have any references to R. If you change your AndroidManifest.xml package name, sometimes Eclipse does not update all of these added imports. If that happens, use the Eclipse refactoring (ALT + Shift + R) to change the import statement in one of your Java files to your new AndroidManifest.xml package name. It is best to do this while you have disabled "Build Automatically".

share|improve this answer
13  
This looks like a cut and paste without reference – Casebash Apr 28 '10 at 0:06
1  
Multiple Copy/Paste of files and name refactoring lead to the same issue, despite all file names and contents were Ok. Cleaning the project, deleting R.java manually and all the import headers, then rebuilding these import headers (still with CTRL+ SHIFT + O) worked fine. – hornetbzz May 18 '12 at 23:07
show 1 more comment
up vote 34 down vote accepted

What Will said was right

R is an automatically generated class that holds the constants used to identify your >resources. If you don't have an R.java file (it would be gen/eu.mauriziopz.gps/R.java in >Eclipse with the 1.5 SDK) I would recommend closing and reopening your project or going to >Project > Build all (and selecting "Build Automatically" while there as recommended by >Josef). If that doesn't work than try making a new project, if the problem is recreated than >post here again and we'll go into more detail.

but I've found out that there was another problem that was causing the first one. The tools in the SDK directory didn't have the permissions to be executed, so it was like the didn't exist for Eclipse, thus it didn't build the R.java file.

So modifying the permission and selecting "Build Automatically" solved the problem.

share|improve this answer
show 1 more comment

And another thing which may cause this problem:

I installed the new ADT (v. 22). It stopped creating gen folder which includes R.java. The solution was to also install new Android SDK Build Tools from Android SDK Manager.

Solution found here: https://groups.google.com/forum/?fromgroups#!topic/android-developers/rCaeT3qckoE

share|improve this answer
2  
I had the same issue. I'm so glad you shared this. – Bryan Bedard May 25 at 18:38
show 2 more comments

R is an automatically generated class that holds the constants used to identify your resources. If you don't have an R.java file (it would be gen/eu.mauriziopz.gps/R.java in Eclipse with the 1.5 SDK) I would recommend closing and reopening your project or going to Project > Build all (and selecting "Build Automatically" while there as recommended by Josef). If that doesn't work than try making a new project, if the problem is recreated than post here again and we'll go into more detail.

share|improve this answer
4  
This worked for me, but I had to "Project -> Clean..." first. – Matt Connolly Feb 19 '11 at 21:20

Close all files, clean project, restart Eclipse.

share|improve this answer
8  
+1 But sometimes it needs 3 eclipse restarts and 7 project cleans in between. Just keep trying ;-) #rant – Matthias Bauch Dec 13 '11 at 16:33
show 2 more comments

It is worth checking in AndroidManifest.xml. The attribute package has the correct value.

That is, <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="your.correct.package.name" ...

After you change that, the R.java will be re-generated.

share|improve this answer
show 3 more comments

This error can also be caused by adding an activity to a namespace that is different to the root namespace for your package.

For example, if com.example.myapp is the root namespace for your package, you can then add an activity to the com.example.myapp.activities namespace.

This will produce the "R cannot be resolved" error.

To fix the import the R in the default namespace in your activity should be:

import com.example.myapp.R;
share|improve this answer
show 1 more comment

Simplest solution - Sometimes you just need to save the XML file you were working on to get the autogenerator to kick in.

Save the file (e.g. main.xml) then delete the R.java file and see if the regenerated R.java resolves the R resolve problem.

share|improve this answer
show 3 more comments

I just had this problem for the millionth time and realized what was causing it: I created an XML file with uppercase letters in the name. All your XML filenames in /res must match [a-z0-9\\._].

share|improve this answer
show 2 more comments

Check the XML file names. Be sure that they're all in lowercase.

Also make sure that any image resource names are also all in LOWER CASE. I had a capital letter in the name of my jpg file, and it caused the R unresolved error right across my project.

share|improve this answer
show 1 more comment

This error cropped up on my x64 Linux Mint installation. It turned out that the result was a failure in the ADB binary, because the ia32-libs package was not installed. Simply running apt-get install ia32-libs and relaunching Eclipse fixed the error.

Hope this helps someone.

share|improve this answer
show 2 more comments

In my case, I had an error in my AndroidManifest.xml. Others have said that your XML files must be free from errors, but I was only looking in the res/ folder. Find and fix as many possible errors and the problem may well resolve itself.

share|improve this answer
show 1 more comment

I had this problem as well. It turned out that I had inadvertently deleted the "app_name" string resource from the strings.xml file, which was causing a silent error. Once I added it back, the R class was generated successfully and everything was back up and running.

share|improve this answer
show 1 more comment

Try to make your new XML layout file name lower case. For example, use my_file.xml instead of myFile.xml.

share|improve this answer
show 1 more comment

Remove main.out.xml. I'm new to this and don't yet know what this file is used for, but removing it cleared the problem.

share|improve this answer
show 1 more comment

Change build target from 1.5 or 1.6 to 2.2 (API version 8), and check if you have the % character in string.xml. If yes, replace with %%.

share|improve this answer
show 1 more comment

My problem was that I left out the = mark from the strings in strings.xml e.g. <string name"dialog_grl... It did not appear to me even when the graphical layout of my .xml file could not show the strings. After a project clean all files got messed up.

share|improve this answer

R is a generated class. If you are using the Android Development Tools (ADT) it is generated whenever the project is built. You may have 'Build Automatically' turned off.

share|improve this answer

Yet another reason R.java might not get autogenerated is if you have directories like res/drawable-hdpi, res/drawable-mdpi, or res/drawable-ldpi.

1.6+ seems to be OK with these directories, but 1.5 doesn't want them. When I removed those directories, R.java started autogenerating for me again.

share|improve this answer

I don't know if it has been answered or not i was facing the same problem and i googled and tried suggestion but in vain finally i changed my workspace and it worked.

share|improve this answer

I had the examples of Android 8 and was trying to use Android 7 SDK. When I closed the project and reopened the application folder and chose to use Android 8 SDK, it was able to find the R file. Hope this helps.

share|improve this answer

Often times this is because of the MinSDK version number you supplied when creating the project. Example:

If you want 2.1 to be the minimum, Android 2.1 is actually API Level 7.

You can see what I am talking about when you browse the SDK you downloaded and installed. Navigate to the place you installed the SDK to (C:\android-sdk-windows for example) and open the folder named "platforms". You will see something like "android-7" listed as a folder, and if you open that there is a source.properties file that, when opened with a text editor, will show you the corresponding platform version.

When you create a project, and you must select a "Build Target" API, the last column in that list named "API Level" shows the number you are looking for when populating the MinSDK setting.

This is probably one of the most common mistakes that results in the R.java file not being created under Project > gen > packagename > R.java.

share|improve this answer

Recently, I faced a similar situation with R that could not be resolved.

  1. Project -> Clean (it usually works, but this time it didn't).
  2. I tried to remove the gen/ folder (which automatically gets built) - nope.
  3. Dummy modifying a file. Nope again. By now I was going grey!
  4. I checked in the AndroidManifest.xml file if appName was present. It was - checked!
  5. Looked again at my res/ folder...

And this is where it gets weird... It gives an error, in some but not all cases..

I added the formatted="false" flag:

<resources>
    <string name="blablah" formatted="false">
    </string>
</resources>

Bingo!

share|improve this answer
2  
Added it where? – LouieGeetoo Sep 1 '11 at 0:33

Wow. I resolved my R issue by tracking down all possible errors in all XML files and related resources. I know that is a handful of layers, but simply you must:

  • Make sure any referenced resource image is actually there
  • Everybody already mentioned so much that this is just echo... Remove all Eclipse injected R.* imports if need be.
  • I like to restart Eclipse when I do the above.
  • Make sure all XML files are properly structured. Like, just do your stuff. Hahaha
  • Go through as many lines as you can. Get in the habit of hitting Ctrl + Shift + S often to get compiler results quickly changed.

Hahah. Sure it is nice to get the R Cannot be resolved fixed though...

share|improve this answer

For me, I removed "import android.R;" and it fixed all my problems. What a nightmare!!!

share|improve this answer

Along with the great suggestions in the previous answers, make sure your Android target is set:

  1. Right-click on your project
  2. Choose Properties
  3. Choose Android in the left menu
  4. Tick a box next to the appropriate Project Build Target.
  5. Click Apply and OK
share|improve this answer
1 2 3

protected by Bill the Lizard Nov 19 '10 at 12:17

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.