Android: How can I make this "समोसा" appear as Hindi characters in my app?
I have these codes that are from a database. They represe开发者_开发百科nt 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?
for a TextView, try .setText(android.text.Html.fromHtml("समोसा")
精彩评论