thorpedosg

A05puX1x

Aug 6th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. My TextView not support this (') character
  2. TextView titletv = (TextView)findViewById(R.id.titleTextView);
  3. titletv.setText("I'm in critical situation");
  4.  
  5. Per capita income likely to cross Rs 60,000 in â11-12
  6.  
  7. Per capita income likely to cross Rs 60,000 in ’11-12
  8.  
  9. jsonString = jsonString.replace("'","'");
  10.  
  11. titletv.setText(jsonString);
  12.  
  13. titletv.setText("I'm in critical situation");
Add Comment
Please, Sign In to add comment