在ListField 中使用graphics.drawText 限制文本大小以放置悬挂点?
我正在尝试思考如何计算文本的宽度,或者是否存在一种简单的方法在黑莓 4.5 中执行此操作,以便将 ... 放入文本中。我用它来绘制文本:
graphics.drawText(auxString, row_height, y+row_height/2, DrawStyle.VCENTER, width-width/list_width_factor-(row_height+20));
I'm trying to think how must i calculate the width of the text or if exist an easy way to do that in blackberry 4.5 in order to put the ... in the text. I'm using this to draw text:
graphics.drawText(auxString, row_height, y+row_height/2, DrawStyle.VCENTER, width-width/list_width_factor-(row_height+20));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否已经尝试过使用 DrawStyle.ELLIPSIS ? :
Have you already tryed using DrawStyle.ELLIPSIS ? :