在 J2ME 画布上显示格式化文本

发布于 2024-10-15 02:16:58 字数 91 浏览 1 评论 0原文

我想在 J2ME 画布上显示 .ashx 文件中的一些文本。但原文中使用的 '\n 在这里不起作用,我得到的只是一条直线。如何在此处添加该格式?

谢谢。

I want to show some text from my .ashx file on my J2ME canvas. But the '\n's used in original don't work here and all I get is a straight line. How do I add that formatting in here?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风和你 2024-10-22 02:16:58

据我所知,在画布上显示字符串时无法添加格式。您必须自己手动添加它。

我想您可以将文本解析为单独的行,然后使用graphics.drawString()依次显示每行

您可以使用font.getStringWidth()和font.getHeight()来检查您的字符串是否出现在画布的边界内。

As far as I am aware there is no way to add formatting when displaying a String on a Canvas. You will have to manually add it yourself.

I guess you could parse the text into individual lines and then display each line in turn using graphics.drawString()

You can use font.getStringWidth() and font.getHeight() to check that your string will appear within the bounds of your canvas.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文