I Have a Custom View which draws text onto the Canvas. I want to change the font to a font stored in the assets folder.
Canvas
font
I
You can use your View's getContext() method to get the current Context, then use it to get the assets:
View
getContext()
Context
Typeface font = Typeface.createFromAsset(getContext().getAssets(), "robotobold.ttf");