-2

I want to make a quiz game application ..My mobile does not supports Gujarati language but I have an application that shows Gujarati fonts ..May be as image but I want to know how it can display Gujarat fonts in my mobile ..

  • Possible duplicate of [How to change the font on the TextView?](http://stackoverflow.com/questions/2888508/how-to-change-the-font-on-the-textview) – Bonatti Dec 11 '15 at 10:58

1 Answers1

2

try to add font to assets/fonts and use it

Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/GujaratiFont.ttf");
TextView myTextView = (TextView)findViewById(R.id.myTextView);
myTextView.setTypeface(myTypeface);
Siarhei
  • 2,358
  • 3
  • 27
  • 63