一种形式的过渡效果

时间:2017-10-03 07:40:07

标签: codenameone

我有一张表格。我希望表单在其内容更新时显示为正在转换为其他表单。

我只有一个表单的内容得到更新,并希望有一个转换效果,就好像我正在转移到另一个表单。感谢。

    Label instruction = new Label();
    ImageViewer v = new ImageViewer();

    instruction.setText(levels.nextS());
    v.setImage(levels.nextI());



    Button b = new Button("Submit");



    b.addActionListener(x -> {

        instruction.setText(levels.nextS());
        v.setImage(levels.nextI());

        current.animateHierarchy(300);
        current.show();

    });

    current.add(FlowLayout.encloseCenter(score));
    current.add(FlowLayout.encloseCenter(instruction));

1 个答案:

答案 0 :(得分:1)

添加内容后,您可以致电animateHeirachyanimateLayout

myForm.add(cmp);
myForm.animateHierarchy(300);

myForm替换为要将内容添加到的容器。