I have to show copyright symbol: © in the message of an AlertDialog. I set a string value with the copyright symbol in res/string. But the symbol is shown as a question mark whe
very simple, try adding \ before @
You can also use the Unicode character for this: "\u00A9 2010 Test"
Use "\u00a9" it is working exactly as required.
Write it this way:
> String copyright = "Copyright \u00a9 2013, ajdeguzman";
Use ©
to write © in a String resource:
Copyright © Acme Industries, Inc
becomes
Copyright © Acme Industries, Inc