How to find the exact pixel center of a String? I need this for drawing onto a canvas.
SOLVED
float ty = ((-mTextBrush.ascent() + mTextBrush.descent())/4);
Add this value to the y axis when you draw.
ie.
canvas.drawText(text, cx, cy+ty, mTextBrush);
where cx and xy are your center points