This is how I draw my strings:
public class ImprovedString
{
private String mText;
private Paint mPaint;
private float mPosX, mPosY, mOffsetX, mOffsetY;
private Rect mBounds;
public ImprovedString(String text,int textSize, int color, Align align, Typeface typeface, float posX, float posY)
{
mText = text;
mPosX = posX;
mPosY = posY;
mBounds = new Rect();
mPaint = new Paint();
mPaint.setColor(color);
mPaint.setTextSize(textSize);
mPaint.setTypeface(typeface);
mPaint.setTextAlign(align);
mPaint.getTextBounds(mText, 0, mText.length() - 1, mBounds);
}
public void draw(Canvas canvas, int width, int height)
{
canvas.drawText(mText, (mPosX + mOffsetX) * width, (mPosY + mOffsetY) * height + mBounds.height() / 2, mPaint);
}
public void setText(String t)
{
mText = t;
}
public void offSet(float x, float y)
{
mOffsetX = x;
mOffsetY = y;
}
public Rect getBounds()
{
return mBounds;
}
}