Answers for "how to make a button do something kotlin android"

0

button kotlin

button1.setOnClickListener {
    // Handler code here.
    val intent = Intent(context, DestActivity::class.Java)
    startActivity(intent);
   }
Posted by: Guest on June-04-2020

Code answers related to "how to make a button do something kotlin android"

Browse Popular Code Answers by Language