1

我试图思考我必须如何计算文本的宽度,或者是否存在一种在黑莓 4.5 中执行此操作的简单方法,以便将 ... 放入文本中。我正在使用它来绘制文本:

graphics.drawText(auxString, row_height, y+row_height/2, DrawStyle.VCENTER, width-width/list_width_factor-(row_height+20));
4

1 回答 1

3

您是否已经尝试过使用 DrawStyle.ELLIPSIS ?:

graphics.drawText(auxString, row_height, y+row_height/2, DrawStyle.ELLIPSIS, width-width/list_width_factor-(row_height+20));
于 2012-02-22T09:23:44.970 回答