【发布时间】:2015-11-04 21:03:29
【问题描述】:
我想在选中第一个单选按钮时显示“您单击了错误的答案”,在选中第二个单选按钮时显示“您单击了正确的答案”。使用此代码,我得到一个错误:Cannot resolve symbol 'CorrectAnswer'。 bariable 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,这意味着第二个答案是正确的。
谢谢!
【问题讨论】:
标签: java android if-statement for-loop changelistener