i need to use unicode font in android instead of bamini. I don't want to use script to convert to & from bamini to unicode.
Typeface fontface2 = Typeface.createFromAsset(this.getAssets(), "fonts/Lohit-Tamil-Classical.ttf");
playBtn.setTypeface(fontface2);
//playBtn.setText(UnicodeUtil.unicode2tsc(getContext().getString(R.string.QUIZ)));
playBtn.setText(Html.fromHtml(getContext().getString(R.string.QUIZ)));
it render tamil but the characters are scrambled. Please help to fix.
Thanks
Mahir