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.