为什么我不能设置Codename One的SpanLabel的字体?
SpanLabel title = new SpanLabel("SpanLabel");
title.getAllStyles().setFont(Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE));
不起作用。
答案 0 :(得分:5)
SpanLabel title = new SpanLabel("SpanLabel");
**title.getTextAllStyles()**.setFont(Font.createSystemFont(Font.FACE_SYSTEM, Font.STYLE_BOLD, Font.SIZE_LARGE));
要更改spanlabel样式,应调用getTextAllStyle方法,如上面的代码所示