在 Android Canvas 上换行长文本
我有一个自定义控件,它直接在 canvas
上进行大量 2D 绘图。
其中一些绘图是文本,所以我使用 Canvas.drawText()
方法。
我想在一定的范围内绘制文本 - 左上角、特定的最大宽度和最大行数。绘制完文字后,我想知道一共花了多少行。
是否有内置函数可以在边界内绘制文本并进行合理的分割?
如果没有,是否有这样做的标准方法?
I have a custom control that is doing a lot of 2D drawing straight to the canvas
.
Some of this drawing is text, so I am using the Canvas.drawText()
method.
I want to draw the text within some bounds - a top-left, certain maximum width, and a maximum number of lines. After drawing the text, I want to know how many lines it took.
Is there a built-in function to draw text within bounds doing the splitting sensibly?
If not, is there a standard recipe for doing so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
android.text.StaticLayout
为此类;只需为所需的文本、对齐方式、宽度等创建一个StaticLayout
并调用其draw(Canvas)
方法即可绘制到画布上。You can use the
android.text.StaticLayout
class for this; simply create aStaticLayout
for the desired text, alignment, width, etc. and call itsdraw(Canvas)
method to draw to the canvas.您可以使用 Paint.getTextBounds() 测量整个字符串的大小,或使用 Paint.getTextWidths() 获取每个字符的宽度。然后在绘制之前适当分割字符串。
You can use Paint.getTextBounds() to measure the size of the entire string or Paint.getTextWidths() to get the width of each character. Then split the string appropriately before drawing it.
我也有同样的问题。我的第一个解决方案如下。
缺少什么:
如何调用?
我有一个名为 CanvasUtils 的静态类,我在其中封装了这样的东西。基本上我在一个矩形内绘制文本。这就是 textHeight 是文本高度的原因。但你可以将你想要的东西传递给函数。
很好的编程!
I had the same problem. One of my first solution is following.
What is missing:
How to call?
I have a static class called CanvasUtils where I encapsulate stuff like this. Basically I draw the text within a rectangle. This is the reason textHeight is the height of the text. But you can pass what you want to the function.
Good programming!