I created an "assets" folder and I created a "fonts" folder inside. The custom font is called "dshift.tff". I have my main screen running in a loop with updates and need to create a display with external font.
public void drawText(Canvas canvas) {
Paint paint = new Paint();
//Tell me what to do here please
}
This method is getting called by
public void draw(Canvas canvas)
{
super.draw(canvas);
//... rest of my code with no more declarations
}