Using the @ character in strings.xml
How to use the @ character inside a string in strings.xml?
<string name="twitter">@npike</string> The XML editor gets pretty angry:
error: Error: No resource type specified (at 'twitter' with value '@npike'). Use this instead:
<string name="twitter">\@npike</string> I would suggest using unicode as \ u0040 instead of the '@' character. XML processing does not like special characters. Here is a list of special characters and unicode values Special characters and Unicode values
Try it with the backslash "\ @". This works for quotes. You cannot use XML objects in strings.xml, otherwise I would recommend this.