如何在Codename One中更改SpanLabel的字体?

时间:2017-03-26 11:23:16

标签: codenameone

为什么我不能设置Codename One的SpanLabel的字体?

SpanLabel title = new SpanLabel("SpanLabel");
title.getAllStyles().setFont(Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE));

不起作用。

1 个答案:

答案 0 :(得分:5)

SpanLabel title = new SpanLabel("SpanLabel");
        **title.getTextAllStyles()**.setFont(Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE));

要更改spanlabel样式,应调用getTextAllStyle方法,如上面的代码所示