Skip to content

Instantly share code, notes, and snippets.

@gfreivasc
Created April 6, 2019 16:55
Show Gist options
  • Save gfreivasc/607474e2d139aaeda9ab9c90d33af657 to your computer and use it in GitHub Desktop.
Save gfreivasc/607474e2d139aaeda9ab9c90d33af657 to your computer and use it in GitHub Desktop.
First v
class MainActivity : ComponentActivity(R.layout.activity_main) {
private var count: Int = 0
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
textView.text = "$count"
button.setOnClickListener {
count++
textView.text = "$count"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment