我阅读了该网站
https://www.androidhive.info/android-working-with-databinding
但是当我写ActivityMainBinding
类时,出现一个未知错误。
当重建项目时,我看到以下错误:
答案 0 :(得分:0)
您在未启用Java 1.8的源代码中的某处使用了lambda表达式。 您必须在app / build.gradle文件中添加compileOptions。
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}