Problem with & and double quotes in my Android app
In XML strings for & (ampersand) you need to use &
and quotes (single or double) need to be escaped,
<string name="with_amp">I, Me & Myself</string>
<string name="with_quotes>Single quote \' and Double quotes \"</string>