I want to write \'ile\' in android TextView but it isn\'t drawn correctly. How can use characters like this?
For example I set the my textview as \'çile\' it shows as \'
Try the following and see if it helps (source):
String description = "Turkish characters here"; TextView tv = (TextView) findViewById(R.id.description); tv.setText(Html.fromHtml(description).toString());