My app is a malayalam news portal and in that app I'm using MLW-Panini.ttf
which is a malayalam font.
The problem is that in one textview itself I'll have to display both malayalam and english text.
English content is not being displayed properly if I use the font.
If the content is only in malayalam it works fine. Considering the attached image, the content inside red line should have been in english but that is in malayalam.
Content inside green line is in malayalam and that is really fine. Requesting for a help...
TextView tv = new TextView(NewsDetail.this);
Typeface font1 = Typeface.createFromAsset(getAssets(),"fonts/MLW-Panini.ttf");
tv.setTypeface(font2);
tv.setText(Html.fromHtml(arrList.get(i).get("news")));`