是否可以“画画”?画布上的字符串?

发布于 2024-11-17 00:07:55 字数 206 浏览 0 评论 0原文

我主要使用与此类似的方法在画布上使用可绘制资源:

image.setBounds(x, y, ( x + 100 ), ( y + 100));
image.draw(c);

我想对字符串(或更具体地说是整数)执行相同的操作。要点是,我需要能够在画布上显示动态可变的字符。有没有一种简单的方法可以做到这一点类似于上面的可绘制方法?

I've largely been using drawable resources to a canvas using a method similar to this:

image.setBounds(x, y, ( x + 100 ), ( y + 100));
image.draw(c);

I want to do the same thing with a string, or more specifically an integer. Point is, I need to be able to display dynamically changeable characters on the canvas. Is there an easy method to do this similar to the drawable method above?

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

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

发布评论

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

评论(2

断桥再见 2024-11-24 00:07:55

尝试 Canvas.drawText(...) 方法

Try the Canvas.drawText(...) method

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