在 J2ME 画布上显示格式化文本
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,在画布上显示字符串时无法添加格式。您必须自己手动添加它。
我想您可以将文本解析为单独的行,然后使用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.