NOT a life or death emergency, just a curiosity question. I have two layout files layout/some_xml_file layout-large/some_xml_file
when I call setContentView(R.layout.some_xml_file), the "R.layout.some_xml_file" is passed to setContentView as an int.
My question is.... when is R.layout.some_xml_file converted to the int. a - As the program starts ? so it's a constant as long as the program is running - or - b - Every time the setContentView() statement is called?