在下面的代码中,我根本无法获得可滚动的容器滚动。我错过了什么?
public void start() {
if(current != null){
current.show();
return;
}
Form f = new Form(new LayeredLayout());
Container cont = new Container(new BoxLayout(BoxLayout.X_AXIS));
cont.setScrollableX(true);
for (int x=0; x<20; x++) {
Label lbl = new Label();
FontImage.setMaterialIcon(lbl, FontImage.MATERIAL_APPS, 20);
cont.add(lbl);
}
f.addAll(new Container(), BorderLayout.south(cont));
f.show();
}
答案 0 :(得分:1)
这是史蒂夫在最新更新发布后的星期五修正的一个错误。我们将通过此修复程序在本周末推出更新。