我将Java中的一些代码转换为Kotlin。
x86-64
fun backhome(home: View) {
val intent_home = Intent(this, MainActivity)
startActivity(intent_home)
首先,我尝试了第一个代码,这是Intent上的错误: 使用提供的参数无法调用以下任何函数 (上下文!,类<*>!) (String!,Uri!)
在第二个版本中,class.java作为未解决的引用出现了错误
答案 0 :(得分:0)
似乎您的项目中缺少Kotlin插件。
在您的 Build.Gradle(应用程序级别)文件中,添加这些文件。
此外,在同一文件中,将其添加到.wrap-students .students {
transition: all .5s;
}
.wrap-students:hover .students {
transform: translateY(-10%);
}
dependencies { }
在您的 Build.Gradle(项目级别)文件中,确保已使用dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
闭包形式编写了这些文件。
BuildScript
同步后,清理/重建项目。希望错误会消失。