I\'m trying to use fonts in my project using Typeface. I copied the \"font.ttf\" into a folder named \"fonts\" inside \"assets\" folder. But eclipse do not allo
\"font.ttf\"
Put your Font File in Assest Folder,
and in use Bellow Code for access.
Typeface tf=Typeface.createFromAsset(getAssets(),"fonts/Century Gothic.ttf"); textview=(TextView)findViewById(R.id.textviewone); textview.setTypeface(tf);
ttf file is in --> assets/fonts/Century Gothic.ttf