我需要保存多个RadioButton的选择状态,以便稍后返回场景时可以看到选择了哪个RadioButton。这与userData无关,而是要查看是否已选择。现在,我知道如何使它起作用,但是会产生很多混乱的复制和粘贴。每个ToggleGroup都是这样的:

@FXML private RadioButton rb1;
@FXML private RadioButton rb2;

public static int[] status = new int[600];

// to save it
if (rb1.getSelect(true)){
 status[0] = 1;
} else {
 status[0] = 0;
}

// to load it
if (status[0] == 1){
 rb1.setSelected(true);
} else {
 rb2.setSelected(true);
}


问题是我编写了一个包含300多个带有二进制答案的问题的调查问卷。因此,我有600多个不同的RadioButtons。以这种方式实现它需要几个小时。

有什么聪明的方法吗?我很感谢您的任何建议。提前致谢!

最佳答案

这是一个SCVExample,它包含基于我的评论的最简单的实现:它定义一个模型(SurveyQuestion),然后将GUI绑定到该模型。

public class Radios extends Application {

    class Survey {
        private ObservableList<Question> questions = FXCollections.observableArrayList();

        public ObservableList<Question> getQuestions() {
            return questions;
        }
    }

    class Question {

        private StringProperty text = new SimpleStringProperty("");
        private BooleanProperty answer = new SimpleBooleanProperty(false);


        public Question(String text) {
            setText(text);
        }


        public boolean isAnswer() {
            return answer.get();
        }

        public BooleanProperty answerProperty() {
            return answer;
        }

        public void setAnswer(boolean answer) {
            this.answer.set(answer);
        }


        public String getText() {
            return text.get();
        }

        public StringProperty textProperty() {
            return text;
        }

        public void setText(String text) {
            this.text.set(text);
        }
    }

    @Override
    public void start(Stage primaryStage) throws Exception {
        // Model
        Survey survey = new Survey();
        for (int i = 0; i<300; i++) {
            Question question = new Question("Do you like number " + i + "?");
            question.answerProperty().addListener((obs, oldval,newval) -> {
                System.out.println("Question: " + question.getText() + " answer changed from " + oldval + " to " + newval);
            });
            survey.getQuestions().add(question);
        }

        // View
        VBox root = new VBox();
        root.setSpacing(10);

        for (Question question : survey.getQuestions()) {

            VBox vBox = new VBox();
            vBox.setSpacing(5);
            HBox answerHBox = new HBox();
            answerHBox.setSpacing(20);
            vBox.getChildren().addAll(new Label(question.getText()), answerHBox);

            RadioButton yes = new RadioButton("Yes");
            RadioButton no = new RadioButton("No");
            ToggleGroup toggleGroup = new ToggleGroup();

            yes.setToggleGroup(toggleGroup);
            no.setToggleGroup(toggleGroup);

            answerHBox.getChildren().addAll(yes, no);
            yes.setSelected(question.isAnswer());
            no.setSelected(!question.isAnswer());

            toggleGroup.selectedToggleProperty().addListener((observable, oldValue, newValue) -> {
                question.setAnswer(newValue.equals(yes));
            });


            root.getChildren().add(vBox);

        }

        Scene scene = new Scene(new ScrollPane(root), 500, 500);

        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}


这将生成类似以下的调查:

java - JavaFX:初始化RadioButton选择状态-LMLPHP

控制台输出:

Question: Do you like number 1? answer changed from false to true
Question: Do you like number 3? answer changed from false to true
Question: Do you like number 6? answer changed from false to true
Question: Do you like number 8? answer changed from false to true
Question: Do you like number 8? answer changed from true to false
Question: Do you like number 8? answer changed from false to true

10-05 23:05
查看更多