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.
|
| ||||
|
feedback
|
|
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) | |||
|
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. | |||
|
feedback
|
|
see this | |||
|
feedback
|