我将一些代码从 java 转换为 Kotlin。
fun backhome(home: View) {
val intent_home = Intent(this, MainActivity)
startActivity(intent_home)
fun backhome(home: View) {
val intent_home = Intent(this, MainActivity::class.java)
startActivity(intent_home)
}
首先,我尝试了第一个代码,这是 Intent 上的错误:使用提供的参数无法调用以下函数 (Context!,Class<*>!) (String!,Uri!)
在第二个版本中,我遇到了 class.java 错误作为未解析的参考
慕斯709654
相关分类