如何在Java中将drawString的文本居中?我希望它可以动态地沿着屏幕居中,无论我是否改变盒子的高度和宽度。我发现this code但我不知道如何使用它。有人可以解释一下吗?
答案 0 :(得分:2)
String text = "...";
Graphics2D g2d = (Graphics2D)g.create();
FontMetrics fm = g2d.getFontMetrics();
int x = (getWidth() - fm.stringWidth(text)) / 2;
String text = "...";
Graphics2D g2d = (Graphics2D)g.create();
FontMetrics fm = g2d.getFontMetrics();
int y = ((getHeight() - fm.getHeight()) / 2) + fm.getAscent();
还演示了here