O meu texto de game over fica mais pra direita da tela, em vez de ficar no meio.
public void desenhaNo(Canvas canvas){
String gameOver = "Game Over";
int centroHorizontal = centralizaTexto(gameOver);
canvas.drawText(gameOver, centroHorizontal, tela.getAltura()/2, VERMELHO);
}
private int centralizaTexto(String texto){
Rect limiteDoTexto = new Rect();
int centroHorizontal = tela.getLargura()/2 - (limiteDoTexto.right - limiteDoTexto.left)/2;
VERMELHO.getTextBounds(texto, 0, texto.length(), limiteDoTexto);
return centroHorizontal;
}