在我的应用程序中,我使用资源文件为表格组件使用了自定义字体。我在资源文件中创建了一种字体
Font.size = 10
Font.Face = Times new roman
Resources res = null;
res = Resources.open("/lang.res");
font = res.getFont("SMALL_FONT");
Table table;
table = new Table(tableModel);
table.table.getStyle().setFont(font);
但我无法获得小字体,它显示默认的移动字体。
如何解决这个问题?