I want to build application for display story where storyname and storycontent should be display in gujarati language.
i have used Shruti.ttf font
For storyname i have used textview and for storycontent i have used webview
Typeface font = Typeface.createFromAsset(this.getAssets(), "shruti.ttf");
poetryTitleText.setTypeface(font);
poetryTitleText.setText("Snow White");
and it works very well.
But to show storycontent in webview i have used HTML Page and set font name in <style> tag of HTML. but it shows square icon.
emulator wont show font in gujarati language. even i am sending gujarati string from R.string file.
Help me.
Thanks in advance