Skip to content

Instantly share code, notes, and snippets.

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