In my application, I used custom font for table component using resource file. I created one font in resource file
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);
But I couldn't get the small font, it displays the default mobile font.
How to fix this?