简体   繁体   中英

Android Development. RadioButton keeps unselecting

I am building a little quiz app and let's say on Question 1, I select option B, then submit and the quiz gives me the next question. However for question 2 if I try to select B, the RadioButton quickly unchecks itself and it is completely uncheckable, until I select another radio button and then try B again. The pattern is, whatever option I selected in the previous question, is uncheckable in the next question unless I click on a different radiobutton and then try again. I'm attaching my code. Any help please?

public class MainActivity extends AppCompatActivity {

QuestionBank allQuestions = new QuestionBank();
String pickedAnswer = "", correctAnswer = "";
final int numberOfQuestions = allQuestions.list.size();
int questionNumber = 0;
boolean noSelection = false;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    nextQuestion();
}

private void nextQuestion() {
    if (questionNumber <= numberOfQuestions - 1) {
        TextView questionLabel = (TextView) findViewById(R.id.question_text_view);
        String fullQuestion = allQuestions.list.get(questionNumber).questionSet.get("question").toString();
        fullQuestion += "\n\na) " + allQuestions.list.get(questionNumber).questionSet.get("a");
        fullQuestion += "\nb) " + allQuestions.list.get(questionNumber).questionSet.get("b");
        fullQuestion += "\nc) " + allQuestions.list.get(questionNumber).questionSet.get("c");
        fullQuestion += "\nd) " + allQuestions.list.get(questionNumber).questionSet.get("d");
        correctAnswer = allQuestions.list.get(questionNumber).questionSet.get("answer").toString();

        questionLabel.setText(fullQuestion);
        questionNumber++;
    } else {
        restart();
    }
}

public void getSelectedAnswer() {
    RadioButton radio_1 = (RadioButton) findViewById(R.id.option1_button);
    RadioButton radio_2 = (RadioButton) findViewById(R.id.option2_button);
    RadioButton radio_3 = (RadioButton) findViewById(R.id.option3_button);
    RadioButton radio_4 = (RadioButton) findViewById(R.id.option4_button);


    if (radio_1.isChecked()) {
        pickedAnswer = "a";
        radio_1.setChecked(false);
    } else if (radio_2.isChecked()) {
        pickedAnswer = "b";
        radio_2.setChecked(false);
    } else if (radio_3.isChecked()) {
        pickedAnswer = "c";
        radio_3.setChecked(false);
    } else if (radio_4.isChecked()) {
        pickedAnswer = "d";
        radio_4.setChecked(false);
    } else {
        noSelection = true;
    }


}

public void submitAnswer(View view) {
    getSelectedAnswer();
    if (noSelection) {
        AlertDialog.Builder a_builder = new AlertDialog.Builder(this);
        a_builder.setMessage("Please select an answer!");
        a_builder.show();
        noSelection = false;
    } else {
        checkAnswer();
        nextQuestion();
    }
}

public void checkAnswer() {

    if (correctAnswer == pickedAnswer) {
        AlertDialog.Builder a_builder = new AlertDialog.Builder(this);
        a_builder.setMessage("Right Answer!");
        a_builder.show();
    } else {
        AlertDialog.Builder a_builder = new AlertDialog.Builder(this);
        a_builder.setMessage("Wrong Answer!");
        a_builder.show();
    }
    pickedAnswer = "";
    correctAnswer = "";

}


public void restart() {
    questionNumber = 0;
    //Collections.shuffle(allQuestions.list);
    nextQuestion();

}

}

在提交之后或显示下一个问题之前,在所有按钮上调用setChecked(false)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM