繁体   English   中英

在Java中选中不同的单选按钮时,如何显示不同的消息?

[英]How to display different messages when different radio buttons are checked in Java?

我想在选中第一个单选按钮时显示“您单击了错误的答案”,而在选中了第二个单选按钮时显示了“您单击了正确的答案”。 使用此代码,我得到一个错误: Cannot resolve symbol 'CorrectAnswer' 可纠正的CorrectAnswer是数据库查询的结果。 这是我的代码:

    radioGroup = new RadioGroup[2];
    answer = new RadioButton[2];
    int i = 0;
    for (Question qn : questions) {
        radioGroup[i] = new RadioGroup(this);
        int j = 0;
        for (Answer an : answers) {
            if (qn.getID() == an.getQuestion_id_answer()) {
                String answers_log = " " + an.getAnswer();
                Integer CorrectAnswer = an.getCorrect_answer();
                answer[j] = new RadioButton(this);
                answer[j].setText(answers_log);
                radioGroup[i].addView(answer[j]);
                j++;
            }
        }
        linearLayout.addView(radioGroup[i]);

        radioGroup[i].setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {

            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                switch (checkedId) {
                    case 0:
                        if (CorrectAnswer == 1) {
                            Toast.makeText(getApplicationContext(), "You clicked the correct answer ", Toast.LENGTH_SHORT).show();
                        } else {
                            Toast.makeText(getApplicationContext(), "You clicked the incorrect answer ", Toast.LENGTH_SHORT).show();
                        }
                        break;
                    case 1:
                        if (CorrectAnswer == 1) {
                            Toast.makeText(getApplicationContext(), "You clicked the correct answer ", Toast.LENGTH_SHORT).show();
                        } else {
                            Toast.makeText(getApplicationContext(), "You clicked the incorrect answer ", Toast.LENGTH_SHORT).show();
                        }
                        break;
                }
            }
        });
        i++;
    }

数据库结构是这样的:

         db.addAnswer(new Answer("NY", 3, 0));
         db.addAnswer(new Answer("WA", 3, 1));

如您所见,在第三列中我有1,这意味着第二个答案是正确的。
谢谢!

我收到一个错误:无法解析符号“ CorrectAnswer”

因为CorrectAnswer变量不在尝试访问它的方法范围内。

无论是把它声明为全局变量或使用setTag/getTagRadioButton来获得CorrectAnswer价值onCheckedChanged

我认为使用setTag / getTag方法将CorrectAnswer设置为:

1.首先使用setTag通过RadioButton保存值:

answer[j] = new RadioButton(this);
  answer[j].setTag(String.valueOf(an.getCorrect_answer()));
  answer[j].setText(answers_log);

2.onCheckedChanged获取选定的RadioButton值为:

 @Override
  public void onCheckedChanged(RadioGroup group, int checkedId) {
    RadioButton checkedRadioButton = (RadioButton)group.findViewById(checkedId);
    int  CorrectAnswer=Integer.parseInt(checkedRadioButton.getTag().toString());
    ....your code here...
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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