未解析的引用:Android Studio 4.1.3中的数据绑定
在SO和其他要解决的答案中遵循了很多答案后,我面临着一种连线行为,但仍然卡住了。
我已添加到应用Gradle
buildFeatures {
dataBinding true
}
和我的active_main.xml按布局包装
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data> </data>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.home.MainActivity" />
</layout>
我也尝试将这些内容添加到gradle.properties
android.databinding.enableV2=true
android.useAndroidX=true
我已经有了
android.useAndroidX=true
android.enableJetifier=true
打开活动时没有显示错误,将名称更改为其他名称时也显示为生成,但每次运行时都会出现此错误
Unresolved reference: databinding
如何解决此问题?
**更新1 我已经做了多次清理和构建,关闭并打开了Android工作室,以及无效缓存/重启。
解决方案
请转到文件-&>无效缓存/重新启动-&>无效并重新启动
相关文章