📜  kotlin boton que te diriga a otra actividad - Kotlin 代码示例

📅  最后修改于: 2022-03-11 14:53:34.581000             🧑  作者: Mango

代码示例1
button1.setOnClickListener {
    // Handler code here.
    val intent = Intent(context, DestActivity::class.Java)
    startActivity(intent);
   }