In Android applications what is the role of "R.java"? [closed] In Android applications what is the role of "R.java"? [closed] android android

In Android applications what is the role of "R.java"? [closed]


Every application uses resources such as strings, drawbles, layouts, and styles. Instead of hard coding such resources into an application, one externalizes them and refers to them by ID. The R.java file contains all those resource IDs, whether assigned by the programmer or generated by the sdk.


R.java is where you have access to anything you have in your resources:

  • Drawables
  • Layouts
  • Strings
  • Arrays
  • ....etc

You can read more here.


R.java is autogenerated on build. It's content is based on the resource files (including layouts and preferences).

When you delete it, it gets recreated, but if you create your own, you will get into trouble as the build system will not be able to replace it.