How do I associate/connect a certain picture to each quiz question? I would like to have the map of a specific country show up for each question, and have the player select the correct name, among the four possible answers, for said country.
String questionText = "What country is this?";
ArrayList<Answer> answers = new ArrayList<Answer>();
answers.add(new Answer("Lithuania", false));
answers.add(new Answer("Latvia", false));
answers.add(new Answer("Estonia", true));
answers.add(new Answer("Belarus", false));
