我已经创建了 LWUIT TextArea
,并且我已经在我的 中添加了文本段落TextArea
,现在我想减小我TextArea
的字体大小,我使用了以下代码:
TextArea big = new TextArea(detailNews.getDescription());
Font createSystemFont = Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_ITALIC, Font.SIZE_SMALL);
big.getStyle().setFont(createSystemFont);
big.setEditable(false);
form2.addComponent(big);
form2.show();
但是,为什么我不能减少文本的字体?