Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created October 4, 2023 10:02
Show Gist options
  • Save codeforfun-jp/5dc7c669cd483ec6118e5626e6cc8b3b to your computer and use it in GitHub Desktop.
Save codeforfun-jp/5dc7c669cd483ec6118e5626e6cc8b3b to your computer and use it in GitHub Desktop.
How to set button click event with kotlin 4
class MainActivity : AppCompatActivity(), View.OnClickListener {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
findViewById<Button>(R.id.btn1).setOnClickListener(this)
}
override fun onClick(v: View) {
Snackbar.make(v, "ボタン1が押されました", Snackbar.LENGTH_SHORT).show()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment