- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试开发一个测验应用程序,我在其中手动编写一系列问题和答案,然后使用它们来设置单选按钮和 TextView 的文本值。但是,当我尝试运行它并使用它时,在第一组问题中,它很好,然后正确答案变得不正确,反之亦然。截图如下。
当我按正确的那个时是正确的。
不正确的,但我按了正确的(你知道答案)。
在我看来,第一组问题的值没有被移动。我尝试了我能想到的一切,但没有运气。当我试图打印出当前文本时,我看到我的 logcat 中发生了什么。这是我的 logcat 中的一个 fragment 。
04-24 01:56:10.880 4093-4093/com.example.muhammad.exquizme D/answer: Google
04-24 01:56:10.880 4093-4093/com.example.muhammad.exquizme D/correctAnswer: Google
04-24 01:56:10.885 4093-4093/com.example.muhammad.exquizme D/Is it correct?: Correct
04-24 01:56:10.894 4093-4147/com.example.muhammad.exquizme W/OpenGLRenderer: Fail to change FontRenderer cache size, it already initialized
04-24 01:56:32.322 4093-4093/com.example.muhammad.exquizme D/answer: Google
04-24 01:56:32.322 4093-4093/com.example.muhammad.exquizme D/correctAnswer: An algorithm
04-24 01:56:32.326 4093-4093/com.example.muhammad.exquizme D/Is it correct?: Incorrect
这是该部分的代码。
QuizQuestion[] questionArray; //global variable
int randomIndex;//global variable
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_play_quiz);
qIndexView = (TextView) findViewById(R.id.currentNumber);
questionTextView = (TextView) findViewById(R.id.questionTextView);
choiceBtnA = (RadioButton) findViewById(R.id.choiceA);
choiceBtnB = (RadioButton) findViewById(R.id.choiceB);
choiceBtnC = (RadioButton) findViewById(R.id.choiceC);
choiceBtnD = (RadioButton) findViewById(R.id.choiceD);
questionArray = new QuizQuestion[5];
displayQuestion();
final String a = choiceBtnA.getText().toString();
final String b = choiceBtnB.getText().toString();
final String c = choiceBtnC.getText().toString();
final String d = choiceBtnD.getText().toString();
choiceBtnA.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkAnswers(a);
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
displayQuestion();
}
}, 2000);
//displayQuestion();
}
});
choiceBtnB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkAnswers(b);
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
displayQuestion();
}
}, 2000);
}
});
choiceBtnC.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkAnswers(c);
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
displayQuestion();
}
}, 2000);
}
});
choiceBtnD.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkAnswers(d);
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
displayQuestion();
}
}, 2000);
}
});
}
//This is called every pressed
public void displayQuestion() {
//Create Question list
String theQuestion = "Android mobile operating system was released on 23rd September 2008 developed by who?";
String[] choices = new String[]{"Google", "IBM", "Intel", "Oracle"};
questionArray[0] = new QuizQuestion(theQuestion, choices, choices[0], "Computing History");
theQuestion = "Who invented the programming language called 'Java'?";
choices = new String[]{"James Gosling", "Steve Jobs", "Bill Gates", "Elon Musk"};
questionArray[1] = new QuizQuestion(theQuestion, choices, choices[0], "Computing History");
theQuestion = "Which of the following languages is more suited to a structured program?";
choices = new String[]{"FORTRAN", "BASIC", "PASCAL", "None of the above"};
questionArray[2] = new QuizQuestion(theQuestion, choices, choices[3], "Computer Fundamentals");
theQuestion = "The brain of any computer system is";
choices = new String[]{"Memory", "ALU", "CPU", "Control unit"};
questionArray[3] = new QuizQuestion(theQuestion, choices, choices[2], "Computer Fundamentals");
theQuestion = "The step-by-step instructions that solve a problem are called _____.";
choices = new String[]{"An algorithm", "A list", "A plan", "A sequential structure"};
questionArray[4] = new QuizQuestion(theQuestion, choices, choices[0], "System Analysis and Design");
randomIndex = new Random().nextInt(questionArray.length);
questionTextView.setText(questionArray[randomIndex].question);
choiceBtnA.setText(questionArray[randomIndex].choices[0]);
choiceBtnB.setText(questionArray[randomIndex].choices[1]);
choiceBtnC.setText(questionArray[randomIndex].choices[2]);
choiceBtnD.setText(questionArray[randomIndex].choices[3]);
}
//checks answer when clicked
public boolean checkAnswers(String answer) {
Log.d("answer", answer);
String correctAnswer = questionArray[randomIndex].answer;
Log.d("correctAnswer", correctAnswer);
if (answer.equals(correctAnswer)) {
Toast.makeText(PlayQuizActivity.this, "Correct", Toast.LENGTH_SHORT).show();
Log.d("Is it correct?", "Correct");
return true;
} else {
Toast.makeText(PlayQuizActivity.this, "Incorrect", Toast.LENGTH_SHORT).show();
Log.d("Is it correct?", "Incorrect");
}
return false;
}
这就是我目前的全部。如果您需要澄清,请告诉我,因为我的英语不是很好。提前致谢。
最佳答案
显示第一个问题后,您将 Button
的初始文本保存为答案,但当您转到下一个问题时它们不会更新。
您需要在单击时获取 Button
的当前文本。将 onClick()
方法中对 checkAnswers()
的调用更改为 checkAnswers(choiceBtnA.getText().toString());
, checkAnswers(choiceBtnB.getText().toString());
等
或者,您可以从 questionArray
中获取答案 String
。例如,checkAnswers(questionArray[randomIndex].choices[0]);
、checkAnswers(questionArray[randomIndex].choices[1]);
等
此外,您可以通过将表示 Button
索引的 int
传递给 checkAnswers()
来稍微精简代码,并在那里获取选定的答案。
choiceBtnA.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
checkAnswers(0);
...
}
});
...
public boolean checkAnswers(int index) {
String answer = questionArray[randomIndex].choices[index];
String correctAnswer = questionArray[randomIndex].answer;
...
}
关于java - 答案正确时不正确 Android 测验应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36818202/
(function() { main(); function main() { jQuery(document).ready(function($) {
所以我必须为我们的类(class)软件设计制作一个 GUI,我们正在为 children 制作一个游戏来练习乘法表。到目前为止,当您执行一次测试或练习时它工作正常,但是当您进行第二次运行时,它会出错。
我刚开始学习 python,想做一些琐事。基本上,我想从列表中随机询问一个问题,然后使用“输入”运算符来判断用户输入的 Y/N 是否正确。我坚持确定如何检查它是否正确。也许我的(不正确的)代码可以更好
我目前正在做一个暑期实习项目,我必须制作一个不经意的 DNS 翻译服务器。我不会在这里详细讨论被忽视的部分,但我会解释我的程序的架构。 有一个服务器端接收混淆的请求并发回一个它自己无法理解的答案。 在
我想用ajax请求翻译单词到谷歌翻译 如果我使用 curl,它会像: curl_init("http://translate.google.com/translate_a/t?client=t&tex
这是我运行dig www.google.com时的答案部分: ;; ANSWER SECTION: www.google.com. 108 IN A 74
我在ES上有以下简单数据: curl -XPUT localhost:9200/dt/art/1 -d '{ "age": 77 }' curl -XPUT localhost:9200/dt/art
我从编码开始,我有一个多维数组的示例。但它没有给出预期的答案。 我只得到“C”,我期待“JohnnyCash:Live at Folsom Prison”。出了什么问题? var music = []
我们有一个应用程序与 Crashlytic 和 Answers 配合得很好。我们需要为这个应用程序做一个不同的风格。因此,我们的 Gradle 编译工作正常,并为两个不同的品牌制作了两个不同的 APK
我正在尝试从数据库获取歌曲列表。 我在查询行中发送一个 ID 数组(永久链接),并且我希望返回值的顺序与我在数组中给出的顺序相同。有没有办法做到这一点? function getByPermalink
我有一个表单可以输入这样的值 test 有没有办法用jquery改变输入类型 我基本上想把这个添加到输入类型中 data-slider="true" data-sl
好吧,我距离数学高手还很远。哎呀,我记住了足够多的高中代数,可以拼凑出任何有效的公式,这对我来说是一个胜利。因此,如果您注意到这里有一个不必要的长或令人困惑的公式,那就可以解释了。 但是,正如人们可以
所以我的问题有点令人困惑,但仍然如此。我从外部源获取一个由 8 个字符串组成的数组,其中所有字符串都包含 double 值。这些值通常为小数点后 4 位: 12345.5678 我想做的是将其转换为小
我成功地构建了一个函数来提示用户提出问题,然后是随机排列的答案选项。但是,由于答案选择现在是随机的,python 如何识别用户输入(数字:1、2、3 或 4)以获得“正确”答案? import ran
我正在尝试使用蛮力来回答这个问题,这样我就可以理解发生了什么: https://www.interviewcake.com/question/java/product-of-other-numbers
尝试使用刚刚宣布的 Answers OSX平台框架: pod 'Fabric' pod 'Answers' pod 'Crashlytics' #import #import #import [
在我添加的页面上检索忘记的用户名 步骤 1) 输入电子邮件地址(通过电子邮件获取帐户) 第 2 步)验证安全问题(他们提供答案,我对其进行验证) 第 3 步)向他们发送带有用户名的电子邮件 第 2 步
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭10 年前。 Improve th
在我的测试中,我需要模拟一种情况,当使用实体管理器(em)将新对象保存到数据库中时,在此过程中,该对象的id属性设置为数据库中该行的自动递增ID。我想将该id属性设置为我自己的值,以便稍后在测试中进行
我有这个代码。调用askToContinue() 方法来询问用户是否要继续,但我的问题是它只是忽略选择并重新启动程序,无论我输入什么。我在代码中遗漏了什么导致它忽略我的选择? public class
我是一名优秀的程序员,十分优秀!