点击“反馈”按钮后,我希望它移动到新表单。在那种形式,它有星级。我有代码,但我不知道如何让星级出现在表单上。请告诉我该怎么做。
答案 0 :(得分:1)
做这样的事情
Form f = new Form("Feedback", BoxLayout.y());
f.add(FlowLayout.encloseCenter(createStarRankSlider()));
f.add(new TextField("", "Feedback", 20, TextField.ANY));
Button ok = new Button("Send");
ok.addActionListener(e -> goToNextForm());
f.show();