4

我已经创建了 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();

但是,为什么我不能减少文本的字体?

4

2 回答 2

4

在资源编辑器中创建字体。然后,从应用程序的资源文件中导入字体。通过使用此方法,您可以将任何字体应用到系统中安装的应用程序。您还可以为字体设置任何字体大小。

浏览链接以了解如何在资源编辑器中创建字体。

http://docs.oracle.com/javame/dev-tools/lwuit-1.4/LWUIT_Developer_Guide_HTML/cjbcgcdd.html#z400088e1296018

于 2012-08-09T07:57:24.260 回答
0

利用:

TextArea big = new TextArea(detailNews.getDescription());

Font createSystemFont = Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_ITALIC,Font.SIZE_SMALL);

big.getUnselectedStyle().setFont(createSystemFont); 
big.getSelectedStyle().setFont(createSystemFont); 

// Added TextArea object big to the Form object form.
form.addComponent(big);
form.show();
于 2012-08-17T07:21:23.993 回答