0

I am using Canvas and Paint to draw my text. There is no option that I can find to change font type

    finalScorePaint.setTextSize(72);
    finalScorePaint.setColor(Color.WHITE);
    canvas.drawText("Your Score is:", 250, 450, finalScorePaint);

How can I do this?

Divergent
  • 141
  • 2
  • 19

1 Answers1

0

Try using Canvas.drawPaint() function.