1

I can't display special characters like: "ü, ä, ö" etc, because I get the error: "unmappable character for encoding utf-8". I am using the Android Studio.

How to fix this?

Thanks a lot for your answers. But when I use the encoding part, then no errors appear anymore, but it looks like this:

enter image description here

The texts are defined in a String[][]

Vik0809
  • 379
  • 4
  • 18
  • This has been answered before http://stackoverflow.com/questions/27525451/android-studio-unmappable-character-for-encoding-utf-8 – Bidhan May 27 '15 at 11:34

1 Answers1

1

You can show it as html:

    textview.setText(Html.fromHtml("ü, ä, ö"));

and you don`t need to change encoding.

sofi37
  • 323
  • 1
  • 4
  • 15