Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Last active January 19, 2022 11:43
Show Gist options
  • Save codeforfun-jp/8b11bf13e7eee304e49be09723be77b1 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/8b11bf13e7eee304e49be09723be77b1 to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 3-4
class MainActivity : AppCompatActivity() {
private lateinit var binding: ActivityMainBinding
private var rightAnswer: String? = null
private var rightAnswerCount = 0
private var quizCount = 1
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment