是否可以“画画”?画布上的字符串?
我主要使用与此类似的方法在画布上使用可绘制资源:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 Canvas.drawText(...) 方法
Try the Canvas.drawText(...) method
使用 Graphics.drawString。
Use Graphics.drawString.