Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would to enter in some comments into the layout XML files, how would I do that?

thanks, Dean

share|improve this question

4 Answers

As other said, the comment in XML are like this

<!-- this is a comment -->

Notice that they can span on multiple lines

<!--
    This is a comment
    on multiple lines
-->

But they cannot be nested

<!-- This <!-- is a comment --> This is not -->

Also you cannot use them inside tags

<EditText <!--This is not valid--> android:layout_width="fill_parent" />
share|improve this answer
2  
Also you cannot have a double dash within a comment or the XML parser will complain <!-- this -- causes a problem but this - does not --> – Martin Belcher - Eigo Oct 24 '11 at 17:25

XML comments start with <!-- and end with -->.

For example:

<!-- This is a comment. -->
share|improve this answer
<!-- comment here -->
share|improve this answer

From Federico Culloca's note: "Also you cannot use them inside tags" means you have to put the comment at the top or bottom of the file - all the places you really want to add comments are at least inside the top level layout tag

share|improve this answer
5  
It does not mean this. You can perfectly put a comment somewhere in the middle of the file. It just needs to be between other tags. – Alex Che Dec 7 '11 at 5:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.