Can I use a special font in Android that is stored on an SD card? What I have seen so far indicates that the font file should be in the resource folder. Please tell me that I am wrong.
I have not tried it myself, but the recipe states that you can do this using
Typeface.createFromFile(String path)
http://androidcookbook.com/Recipe.seam;jsessionid=A2DD7A11C804B7C7646DCA883AA452FC?recipeId=1141
Typeface.createFromFile() accepts a String or File path.
Typeface.createFromFile()
String
File
Typeface typeface = Typeface.createFromFile( new File(Environment.getExternalStorageDirectory(), "font.ttf"));