Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

print copyright symbol in TextView

Tags:

java

android

I am parsing the xml which has copyright symbol in some tag which i'm getting as String and displaying it on TextView. But instead of symbol it is printing #174; . Can anyone tell that how can I print appropriate symbol.

EDIT: It is like this in xml Raghav© and i want to display it like this, but it is displaying only #174;

like image 233
Rookie Avatar asked Aug 22 '12 13:08

Rookie


2 Answers

Try the unicode symbol "\u00a9" and see if it works

like image 92
noloman Avatar answered Oct 25 '22 02:10

noloman


Try the copyright symbol using string '&#169', it will surely help you in accessing your xml like this- Raghav©.

like image 31
user13379049 Avatar answered Oct 25 '22 03:10

user13379049