Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created November 3, 2020 01:28
Show Gist options
  • Save codeforfun-jp/c2445fa1b954ee77294d11c827b84ce8 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/c2445fa1b954ee77294d11c827b84ce8 to your computer and use it in GitHub Desktop.
QuizApp 4.1
answerBtn3 = findViewById(R.id.answerBtn3);
answerBtn4 = findViewById(R.id.answerBtn4);
// quizDataからクイズ出題用のquizArrayを作成する
for (int i = 0; i < quizData.length; i++) {
// 新しいArrayListを準備
ArrayList<String> tmpArray = new ArrayList<>();
// クイズデータを追加
tmpArray.add(quizData[i][0]); // 都道府県名
tmpArray.add(quizData[i][1]); // 正解
tmpArray.add(quizData[i][2]); // 選択肢1
tmpArray.add(quizData[i][3]); // 選択肢2
tmpArray.add(quizData[i][4]); // 選択肢3
// tmpArrayをquizArrayに追加する
quizArray.add(tmpArray);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment