I'm trying to write text on a canvas using dra开发者_如何学JAVAwText. And i use font size 20 here.
But the text appears to be not very nice. Does any one knows how to change the font in to a better one. If there are ways other than using drawText please give me some examples.
Try setting antiAlias on your paint.
textPaint.setAntiAlias(true);
精彩评论