Kotlin实现在任何界面进行Activity跳转(startActivity)

val intent = Intent(context, 要跳的activity::class.java)
startActivity(intent)

你可能感兴趣的:(笔记)