I do this:
p.setTypeface(Typeface.createFromAsset(getAssets(), "fonts/SKYWORK.TTF")); canvas.drawText("!@#$%^&*123OPQW7890", 200, 200, p); The font is registered: assets/fonts/SKYWORK.TTF
Result: draws characters, but not with the font that you specified.
Question: what am I doing wrong?
Typeface.createFromAsset(getAssets(), "fonts/SKYWORK.TTF"). - Vladyslav Matviienko