如何更改ListField中文本的字体大小?
在drawListRow()
方法中,我使用graphics.drawText()
绘制文本。如何更改文本的字体大小?
In drawListRow()
method, I draw texts using graphics.drawText()
. How can I change the font size of text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 ListFieldCallback 代码中,重写 drawListRow() 并在那里设置字体:
In your ListFieldCallback code, override drawListRow() and set the Font there:
您是否尝试过先使用新大小的字体设置
Graphics#setFont
?也许使用 Font#derive(style, size):
只是快速阅读了javadocs,而不是实际上做了这样的事情:
Have you tried first setting the
Graphics#setFont
with your newly sized font?Perhaps using
Font#derive(style, size)
:Just quickly perused the javadocs, not actually done this. something like: