在此方法文档中,它写道:
x The x-coordinate of origin for where to draw the text
y The y-coordinate of origin for where to draw the text
但它没有说明这个文本的绘制方向。我知道文本是从原点向上绘制的,但是当我给出以下参数时,我的文本会被剪切:
canvas.drawText(displayText, 0, canvas.getHeight(), textPaint);
另外,假设我正在使用 Align.LEFT (意味着文本绘制在 x,y 原点的右侧)
那么正确的论点应该是什么(假设我不想使用固定数字)?