Advertisement
Guest User

Click-Counter / Kotlin

a guest
Feb 26th, 2021
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.16 KB | None | 0 0
  1. val textView: TextView = findViewById<TextView>(R.id.textView)
  2. var count: Int = 0
  3.  
  4. textView.setOnClickListener {
  5.     count++
  6.     textView.text = count.toString()
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement