-2

This is the story. I had a bunch of problems with R.java and i'm finally solving them. R.Java didn't regenerate until i created a new project and copied the old codes in the new one and finally R.java wanted to regenerate and keep in my project when i clean it.

The thing is, when i try to create a field (i.e :source, activity_main, etc.), save all files and build, the error keeps showing and the field line eclipse created for me is gone.

Here's the code :

    @SuppressWarnings("deprecation")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setVolumeControlStream(AudioManager.STREAM_MUSIC);
    PowerManager powerManager = (PowerManager) getSystemService(Context.POWER_SERVICE);
    wakeLock = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, "Lexiconda");
    setContentView(com.indestructibles.reproductormp3.R.id.activity_main);

    initialize(0);
}





  private void createMenu(Menu menu){
    }
    MenuItem miStop = menu.add(0, 2, 2, "Stop");{
        miStop.setIcon(com.indestructibles.reproductormp3.R.id.btnStop);
    }
    MenuItem miSource = menu.add(0, 3, 3, "Source");{
        miSource.setIcon(com.indestructibles.reproductormp3.R.id.source);
    } 

Any help. please?. I'm in an urge.

Dason
  • 55,392
  • 9
  • 117
  • 138

1 Answers1

-1

First, why don't u just import

com.indestructibles.reproductormp3.R

Instead of typing it everytime

Second, post ur XML code, R errors maybe because you wrote something wrong in the XML file, so you've to check your XML files.

hemoali
  • 95
  • 2
  • 11