-
-
Save codeforfun-jp/11b99d58f4e0e3547cabae106836856c to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 5-4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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