Sunday 8 May 2016

How to use Hindi Fonts in Android ?


TextView t = new TextView(this);
Typeface Hindi = Typeface.createFromAsset(getAssets(), "fonts/mangle.ttf");
t.setTypeface(Hindi);
t.setText("Naveen Tamrakar");

No comments:

Post a Comment