如何在纯Kotlin中启动新的意图/活动?

时间:2019-05-22 10:20:24

标签: android android-intent android-activity kotlin

我似乎找不到任何明确的答案。其他一切都很混乱。

要在Kotlin / Android中开始新的意图:

    val nextScreenIntent = Intent(this, NextScreen::class.java)
    startActivity(nextScreenIntent)

为什么它在class.java中引用“ java”?

没有纯Kotlin来做到这一点吗?

添加:

这不是重复的问题。其他问题/答案不提供答案。

在不参考Java的情况下启动活动或意图的纯Kotlin是什么?

0 个答案:

没有答案