I just fetched some data from JSon and listed into my Listview. It’s fetching properly. But, in my listview’s ' character didn’t support there? What’ll i do for this? But, in basically it’s supports when, we use like this –
TextView titletv = (TextView)findViewById(R.id.titleTextView);
titletv.setText("I'm in critical situation");
It’s displaying fine when we set that character by above code. Otherwise, it won’t supports.
Update
In my JSON getting time i’ve the text like this –
Per capita income likely to cross Rs 60,000 in â11-12
See in above line â Character only disturbed me. But, this actual value is nothing but ' only.
My Actual result is –
Per capita income likely to cross Rs 60,000 in ’11-12
And, my Screenshot is here –

You should try to escape the value
'to have\'.You can do this:
Then you can use it like that:
Cheers.
EDIT
As we discuss in the comments the problem was that the encoding was ANSI instead of UTF-8.