0

For example I've java string with [bɪ’fɔ:l] word. Set this string to TextView by .setTest method and it displays as [b[]f[]l] where [] is squear symbol. I've tried .getText from the TextView, but java string contains the same right symbols.

WebView gave the same result. What could be the problem?

hasanghaforian
  • 13,858
  • 11
  • 76
  • 167
sh1ng
  • 2,808
  • 4
  • 24
  • 38

1 Answers1

1

Square symbols means that the font you are using (Droid sans in android by default) has not defined the character you need to display.

To change the font take a look at this question: How to change the font on the TextView? and use a font that can show the special characters you need

Community
  • 1
  • 1
maid450
  • 7,478
  • 3
  • 37
  • 32