Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 lwit 中的 resource.jar 文件创建了自定义字体“font.res”文件,现在我想将此自定义字体应用于我的 Textarea 组件,如何应用自定义字体任何示例代码?
如果要添加到文本区域,
ta.getUnselectedStyle().setFont(Font.getBitmapFont("fontname"));
fontname - 你在 res 文件中给字体的名称
如果没有,您可以 在资源编辑器中打开主题,双击要设置字体的组件并选择字体选项卡, 取消勾选“派生字体”,勾选“新字体”并选择您的字体, 保存 res 文件并将其添加到您的 j2me 项目中