Custom font in canvas text

suggest change

Drawing text in canvas with your font from assets.

Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/SomeFont.ttf");
Paint textPaint = new Paint();
textPaint.setTypeface(typeface);
canvas.drawText("Your text here", x, y, textPaint);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents