views:

70

answers:

1

Hello,

since the beginning of my programmation, I used some special character like "<-", ""<<" im my string.xml in Eclipse while developping for Android.

All worked fine for one year, but today, i just wanted to make some minor changes and began to edit my xml files.

I get now compilation error on these characters because eclipse believe it's part of the xml blocks.

Any idea on how I could add this symbol "<" in my xml files?

Thank a lot.

+5  A: 

Use &lt; for <, &gt; for > and &amp; for &.

reece
Thank you... I feel stupid because I wal looking for "bigger than" because of my bad english...After a search on greater than , I found my answer..Thank a lot btw.
Profete162