Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created December 5, 2021 06:33
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/3786da17f3e1cad9130d667baa13bd10 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/3786da17f3e1cad9130d667baa13bd10 to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 7-3
override fun onCreate(savedInstanceState: Bundle?) {
/* 省略 */
// 正解数を取得
val score = intent.getIntExtra("RIGHT_ANSWER_COUNT", 0)
// TextViewに表示する
binding.resultLabel.text = getString(R.string.result_score, score)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment