web-dev-qa-db-fra.com

Comment échapper à "&" en XML?

Duplicate possible:
Comment échapper aux esperluettes en XML?

J'écris

 <string name="magazine">Newspaper & Magazines</string>

dans strings.xml

Mais le compilateur dit:

The entity name must immediately follow the '&' in the entity reference.    strings.xml /OOReaderWidget/res/values  line 9  Android XML Format Problem

Alors, comment puis-je afficher un "&" dans strings.xml? Merci!

186
herbertD

utilisez &amp; à la place de &

changer à

<string name="magazine">Newspaper &amp; Magazines</string>
365
Ram kiran
'&' --> '&amp;'

'<' --> '&lt;'

'>' --> '&gt;'
62
xshoppyx
8
Kurt