1

I have this xml :

    <TextView
        android:id="@+id/tv_mytv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
 />

And I have this Java :

TextView mytv;
mytv= (TextView) findViewById(R.id.tv_mytv);
mytv.setText(Html.fromHtml("<p>ğüşçı</p>"));

When I run the emulator, All I get is question marks in diamond shaped icons. How can I make my app display Turkish characters? Thanks.

jason
  • 6,962
  • 36
  • 117
  • 198

1 Answers1

0

Check that the charset is set to UTF-8/16 or ISO-8859-9 (Turkish charset). If that doesn't solve the problem, it could be the font itself. Try running the app on a real device to see if it works.
EDIT -
You can also try unicode charecters. For example - http://unicode-table.com/

FadedCoder
  • 1,517
  • 1
  • 16
  • 36