-1

in my android studio project R.java file missing id name

 public static final class id 
     {
        public static final int                  =0x7f0c00a2;
        public static final int Enter_manually_gone=0x7f0c015e;
        public static final int Regenerate_layout_gone=0x7f0c0160;
        public static final int aboutTV=0x7f0c00e0;
        public static final int aboutusTV=0x7f0c007a;
     }

I am tried all thing, clean project, rebuild project but my issue not resolve please help me out

ajit
  • 27
  • 7

1 Answers1

1

Make sure you don't have any errors under your Problems tab in Eclipse. Try to use Fix Project Properties under Android Tools when your right click on your project.

If that doesn't fix your problem, try modifying your AndroidManifest.xml (just add a space and save). I've heard that will force the R.java to rebuild.

  • except for errors that says R cannot be resolved to a variable - these errors will go away once you correct other errors and force R.java to rebuild.

from: Developing for Android in Eclipse: R.java not regenerating

Community
  • 1
  • 1
Cristian Cardoso
  • 665
  • 6
  • 11