-3

I have been trying to show marathi font using this link in my app. But some how its not working for me. It gives no error but does not show any font in text view. I came to know about internationalization concept when I first tried to do this.

Community
  • 1
  • 1

1 Answers1

0
TextView info=(TextView)findViewById(R.id.textview);
Typeface face= Typeface.createFromAsset(this.getAssets(), "fonts/FontAwesome.otf");
info.setTypeface(face); 
info.setText("TypeFace"); 

enter image description here

Sohail Zahid
  • 8,099
  • 2
  • 25
  • 41