Big text on Android

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?

+5
source share
1 answer

Have you tried Paint.setAntiAlias(true)to enable anti-aliasing ? Paint.setSubpixelText(true)may also help.

http://developer.android.com/reference/android/graphics/Paint.html

+10
source

All Articles