I am trying to integrate custom fonts (Imperator.ttf and goodfish.ttf) from the following website into my corona app: http://www.1001freefonts.com/top-fonts.php
Put Imperator.ttf font file in Assets folder
In class use following code:
Typeface imperator_typeface =Typeface.createFromAsset(getContext().getAssets(),"Imperator.ttf");
your_textview.setTypeface(imperator_typeface);