there is this R.layout class in the standard library, but if I create my own files with xml editor in R.layout directory, they’ll be all added to R-file and found from the R-file? This is a bit unclear to me how these go together.
http://developer.android.com/reference/android/R.layout.html
All the factory android
Rreferences are stored in a different place than yours. For example, in your java code, you’ll access to your references using this:R.layout.yourlayoutBut the factory
Rreferences are accessed through:android.R.layout.factorylayoutSame goes for xml. Your drawables should be:
@drawable/yourdrawableAnd the factory references:
@android:drawable/factorydrawableSo, to sum up,
Ritems are stored independently