Reputation: 1786
I have these codes that are from a database. They represent Devangari (Hindi) script:
समोसा
I have a Hindi font installed on my phone.
How I get these codes to display as Hindi script in my Android app?
Upvotes: 1
Views: 455
Reputation: 20229
for a TextView, try .setText(android.text.Html.fromHtml("समोसा")
Upvotes: 2