I am trying to resize text in android to make it bigger using
Paint paint = new Paint();
paint.setTextSize(30);
canvas.drawText("Text goes here" , x, y,paint);
However, the text becomes uneven.
Is there any other way to resize text in an android without its ugliness and pixelation?
source
share