-
-
Save codeforfun-jp/8b11bf13e7eee304e49be09723be77b1 to your computer and use it in GitHub Desktop.
Android Quiz App Kotlin 3-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
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