Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created October 24, 2024 04:58
Show Gist options
  • Save codeforfun-jp/16bc51209e9764e61efca30ba062c70e to your computer and use it in GitHub Desktop.
Save codeforfun-jp/16bc51209e9764e61efca30ba062c70e to your computer and use it in GitHub Desktop.
[Kotlin Quiz ver2] 3-5
override fun onCreate(savedInstanceState: Bundle?) {
/* 省略 */
binding.answerBtn1.setOnClickListener { checkAnswer(it) }
binding.answerBtn2.setOnClickListener { checkAnswer(it) }
binding.answerBtn3.setOnClickListener { checkAnswer(it) }
binding.answerBtn4.setOnClickListener { checkAnswer(it) }
}
// クイズを出題する
private fun showNextQuiz() {
}
// 解答ボタンが押されたら呼ばれる
private fun checkAnswer(view: View) {
}
// 出題数をチェックする
private fun checkQuizCount() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment