Obviously the answer is no... right? The reason I ask is because I have this string defined in XML for an Android app:
<string name="foo"><![CDATA[<html><body><p>This%20is%20a%20test</p></body></html>]]></string>
All I do to the string is read it, and display in an HTML view. I would not have expected the %20
s to be interpreted, yet they are. Is this the correct behaviour, or is Android being typically buggy?