Is it possible to convert R.java into layout file xxx.xml.. In some project which I got from internet the layout file is missing and all I have now is R.java.

So is there any way that I can create/extract information from R.java file to make the layout xml file.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

That is not possible. the R class only handles references to content (like layouts), not the content itself.

link|improve this answer
Thanks... the only thing I can infer from looking at R.java the name and the type of the controls/ elements like strings, xmls raw etc. – Khurram Majeed Sep 15 '11 at 9:55
feedback

R.Java is the pretty much the only file that you don't need. This file is automatically generated when your project is compiled.

Because of this, you should not edit this file in any way.

Therefore, if all you have is the R.java file... Well, you have nothing.

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.