如果我开始惹恼任何人,我真的很抱歉,我已经花了数周时间尝试这样做,我需要完成我的应用程序(测验),我似乎无法理解如何实现这一点(我向所有程序员致敬)。所以我要试着一点一点地整理出来。首先让我概述一下我正在尝试做的事情。
页面/活动 1 = 4 个按钮,用于各种测验类别,我现在只想要一个工作。
第 2 页 = 我想要一个问题和 4 个可能的答案(随机排列),以及一个下一步按钮,然后将滚动到下一个问题。
最后一页我想把所有正确的答案加起来,或者是一个 8/10 的场景,或者如果可能的话,时间和能力允许一张由分数定义的奖杯和颜色的图片。
现在到目前为止,我已经完成了我认为的布局,拖放我可以做到。
上周我花了这个时间试图获得一个问题和答案的数据库,但我做不到,所以我决定做数组。
第一个问题是这就是我的数组的样子,我已经在自己的类中设置了它,这是可行的还是愚蠢的?
public class QuestionSets {
String mathsQuestions[]= {
"What is 10 * 4 =?",
" How many sides does a cube have?",
"What is Pi equal to, to 2 decimal places?",
"What is 595 172 correct to the nearest thousand?",
"What is 2.5 * 100?",
"What is 90 out of 200 as a percentage?",
"What is y if y=5x+5 if x is 5?",
"What is 66 + 108?",
"What is 1 + 0.6?, What is 10 - 8=?"};
String correctAnswers[]=
{"40", "6", "3.14", "595 000", "250", "45%", "30", "174", "1.6", "2"};
String option1 [] =
{"50", "4", "4.13", "596 000", "25", "40%", "40", "170", "0.7", "4"};
String option2 [] =
{"45", "7", "5,14", "600 000", "200", "50%", "25", "178", "7", "80"};
String option3 [] =
{"54", "3", "2.13", "500 000", "2000", "90%", "20", "180", "6", "18"};
// ...
正确和错误的答案与问题一致。
我看到有人做数组列出了我放在问题课上的东西,这对吗?我真的不知道,但这就是我在那里所做的。
// ...
ArrayList<Integer> mthsQuestions = new ArrayList<Integer>();
ArrayList<Integer> crtAns = new ArrayList<Integer>();
ArrayList<Integer> optn1 = new ArrayList<Integer>();
ArrayList<Integer> optn2 = new ArrayList<Integer>();
ArrayList<Integer> optn3 = new ArrayList<Integer>();
}
还有为什么它们是整数,它们不应该是字符串吗?
谢谢