在ListField 中使用graphics.drawText 限制文本大小以放置悬挂点?

发布于 2025-01-08 17:59:26 字数 225 浏览 1 评论 0原文

我正在尝试思考如何计算文本的宽度,或者是否存在一种简单的方法在黑莓 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓酥 2025-01-15 17:59:26

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

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

Have you already tryed using DrawStyle.ELLIPSIS ? :

graphics.drawText(auxString, row_height, y+row_height/2, DrawStyle.ELLIPSIS, width-width/list_width_factor-(row_height+20));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文