When we write a code for Android and at runtime however R.java file being deleted. I want to ask why this is deleted autometically.

link|improve this question
feedback

3 Answers

R.java is generated automatically. You should never edit it directly. Place your resources in the relevant project folders and let the SDK generate the file for you (as part of the compilation process)

link|improve this answer
feedback

http://developer.android.com/guide/topics/resources/accessing-resources.html#ResourcesFromCode R.java is linking your resources with static variables so you can easily access them from your code. R.java is generated automatically from aapt tool so if you do any changes manually they will be discarded after regeneration.

link|improve this answer
feedback

manually modiffying r.java

see this

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.