gujarati font type in android application [closed]
i want to display gujarati font in android application
put the gujarati font file in your assets folder of your project, then, in your code, you can use setTYpeface() function to set the font for the text view.
first:
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/xyz.otf");
then:
text.setTypeFace(tf);
Hope this helps!
精彩评论