i was using Eclipse Helios but due to performance issues i changed to Eclipse Galileo and installed the ADT plugging, and added my sdk folder to Elcipse Preferences. Now R.java disappeared from all of my projects. How can i fix this, i did Project/Clean but that won't generate the files, there's nothing wrong in my xml and there's no out.xml in any of my projects.

Thanks in advance

link|improve this question

69% accept rate
Is it recognizing your projects as android projects or just java projects? – Falmarri Jan 30 '11 at 11:24
how can i check this? In the project properties under build path it says Android 2.2 among other things – Ernesto Delgado Jan 30 '11 at 12:46
This issue happens only in Eclipse Galileo after the installation. I guess i did something wrong? Steps: 1-Install ADT plugin from repository. 2-Browse for the android SDK on Eclipse/Android preferences. 3-Download android packages from ADT Manager. 4-Run. Ain't that right? – Ernesto Delgado Jan 30 '11 at 12:52
feedback

4 Answers

up vote 1 down vote accepted

I had this same issue today and figured it out. The reason this happens so often when including external/example files is because often times these examples reference layouts in your application, but do not have access to the package and therefore cannot see the R.java file in that package. to make things clear, here's the beginning of the R.java file:

/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.conceptualsystems.dashboard;

public final class R {
    public static final class attr {
    }
    public static final class drawable {
        public static final int csc_logo=0x7f020000;
        public static final int icon=0x7f020001;
    }
    public static final class id {
        public static final int activation_code=0x7f070012;
        public static final int alpha_bar=0x7f07000b;
        public static final int alpha_label=0x7f07000a;

notice the package name is whatever the package name of your application is. .java files that are not included in this package (ie, your example code you just dropped in) will need to explicitly reference that package file like this:

package com.example.android.apis.graphics;

import android.app.Dialog;
import android.content.Context;
import android.graphics.*;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.SeekBar;
import com.conceptualsystems.dashboard.R;

the last line is the one to pay attention to. after importing the resources explicitly, the resources will be available in your example code.

link|improve this answer
feedback

Sometimes when you clean your project the R file disappears, I had the same issue.

The way I fixed it was:

-Make sure all the "import android.R" was removed -Clean again (if this doesn't fix it, restart eclipse and try again)

Or

-Put the pointers to R file in comment f.e. // setContentView(R.layout.main); -If all the pointers to R file are in comment, you should get only warnings in the file, and hopefully errors somewhere else. -Fix the errors and then uncomment the pointers. Sometimes eclipse ignores some errors and drops the R file and then says nothing about it, which is annoying, but this will fix it. :)

-If this still doesn't work, you can try create a new project and copy paste your code in it.

link|improve this answer
+1 I had a variation on the theme: when I added an Android library project to my Android project, R disappeared, drowning me in errors. The eclipse "Problem" view happened to show the base error, which was a styleable conflict between the projects. Fixed that one and all was well again. – cdhabecker Aug 5 '11 at 20:45
feedback

Try unclicking and re-clicking build project automatically in the project dropdown, closing the program each time. There have been know bugs about this for a while but there's not always a set fix.

When it once happened to me it turned out it was because i'd named an .xml file with a capital letter. Worth checking.

link|improve this answer
It didn't work, i had the same problem with xml names but that was a long time ago so my xml looks fine (no capital letters). Any other ideas on how to solve this? – Ernesto Delgado Jan 30 '11 at 12:44
None accept for a new install sorry :/ There was a time Galileo didn't work with android but i'm sure that's been solved by now, Sorry i couldn't help. – Holly Jan 30 '11 at 12:54
I didn't think this would work because I had tried every other build-no-build sequence I could think of, but it did work. – Jacob Marble Dec 23 '11 at 5:47
feedback

In my experience there is a mistake in the xml somewhere. Eclipse will no doubt tell you where. After I fix the error R appears.

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.