I use IDEA's intellisense automatically (Alt+Enter) as I am so used to know which option it will offer. So this morning I was renaming some XML id (LinearLayout's id) and (probably) somehow generated an entry directly into R.java file. Later I wanted to compile the project, but I keep getting error: <identifier> expected. The R.java looks like this now

public static final class id {
    public static final int @+id/linearLayoutMessages=0x7f080012;
    //... other IDs

Obviously the torn in the file is the prefix @+id/.

I tried removing R.java and rebuilding the project, but it did not help. The same error and the same entry keeps regenerating itself. I can solve this (temporarily) by manually removing this entry from R.java, but I get this message each time I try to rebuild the project.

Any ideas why this strange entry remains persistent even after deleting R.java? The version of IDEA is 11.

link|improve this question

3  
Are you sure you don't accidentally have an id of "@+id/@+id/linearLayoutMessages" in your XML? – AndrewKS Feb 16 at 17:34
I am not, so I will check up this again. But I doubt as compiler does not complain on illegal name after I manually remove R.java entry letting compiler move forward in compilation – sandalone Feb 16 at 17:45
OH MY GOD! You were right. It's just stood there. Please make a reply so that I can accept your answer. – sandalone Feb 16 at 17:46
feedback

1 Answer

up vote 2 down vote accepted

You had "@+id/@+id/linearLayoutMessages" in your XML, you silly goose!

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.