Android: Specifying a literal '@'?
Is there a way to set some attribute to the character '@' ?
i.e. explicitly not referencing an开发者_JAVA百科y resource, just want the '@' sign?Figured it out... just prefix it with \ i.e.:
<Button android:text="\@" />
It seems the character '?' requires escaping as well.
精彩评论