tags:

views:

107

answers:

2

I have to show copyright symbol, ©, in the message of an AlertDialog. I set a sting value with the copyright symbol in res/string. But the symbol is shown as a question mark when the dialog opens. How can I correctly show the copyright symbol in the dialog. Thanks.

+1  A: 

You can also use the Unicode character for this: "\u00A9 2010 Test"

hvdm
A: 

Thanks hvdm ...this is what I was looking for... Using "\u00A9" you can add a copyright symbol to Android Layout i.e Activity in XML.

nilMoBile