Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created December 5, 2021 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/11b99d58f4e0e3547cabae106836856c to your computer and use it in GitHub Desktop.
Save codeforfun-jp/11b99d58f4e0e3547cabae106836856c to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 5-4
fun showNextQuiz() {
// カウントラベルの更新
binding.countLabel.text = getString(R.string.count_label, quizCount)
// クイズを1問取り出す
val quiz = quizData[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment