我需要一种方法来为 ArrayList 中的一个问题分配 3 个可能的答案,其中只有一个答案是正确的。
我是 Android 新手,如果您能提供帮助,我将不胜感激。
我在这里有一个问题课:
package com.example.quiz;
import java.util.ArrayList;
import android.app.Activity;
import android.os.Bundle;
import android.os.CountDownTimer;
import android.widget.TextView;
public class Questions extends Activity {
private ArrayList<String> questionsArray = new ArrayList<String>();
public Questions() {
addQuestion("Which Prophet was the first in Islam?");
addQuestion("What is the purpose of life?");
addQuestion("Who is the last Prophet in Islam?");
}
public void addQuestion(String question) {
questionsArray.add(question);
}
public ArrayList<String> getQuestionsArray() {
return questionsArray;
}
public void setQuestionsArray(ArrayList<String> questionsArray) {
this.questionsArray = questionsArray;
}
}