Wednesday, July 11, 2012

How to set costume fonts in android


1. create assets/fonts/ and put your TTF files in there:
2.set view's properties.
 TextView tv=(TextView)findViewById(R.id.custom); 
  Typeface face=Typeface.createFromAsset(getAssets(), "fonts/ARIAL.ttf"); 
  tv.setTypeface(face); 

No comments:

Post a Comment

content -->