Android 数据绑定:在生成的数据绑定文件中找不到 ...BindingImpl

Bri*_*anM 8 data-binding android kotlin android-databinding android-jetpack

我正在尝试使用示例项目 android-sunflower 对视图模型进行数据绑定。当前的问题是,当我尝试构建项目时,我error: cannot find symbol symbol: class FragmentShopBindingImpl location: package {{packageName}}.databinding在类中遇到错误,DataBindinMapperImpl 我不确定我在这里缺少什么,因为我添加了示例项目中的所有内容。该类FragmentShopBindingImpl没有生成,或者不应该生成?由于我在 android 向日葵示例中看不到任何以“Impl”结尾的类的出现
我的代码:

override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {

        val factory = InjectorUtils.provideShopViewModelFactory(context!!)
        val shopViewModel = ViewModelProviders.of(this, factory)
            .get(ShopViewModel::class.java)

        val binding = DataBindingUtil.inflate<FragmentShopBinding>(
            inflater, R.layout.fragment_shop, container, false).apply {
            viewModel = shopViewModel
            lifecycleOwner = this@ShopFragment
        }

        return binding.root
    }
Run Code Online (Sandbox Code Playgroud)

布局:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <data>
        <variable
            name="viewModel"
            type="{{packageName}}.viewmodel.ShopViewModel" />
    </data>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context=".fragments.ShopFragment">

        <TextView
            android:text="@{viewModel}"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </LinearLayout>
</layout>
Run Code Online (Sandbox Code Playgroud)

生成文件的图像(忽略 {{packageName}}:

在此处输入图片说明

Bri*_*anM 8

似乎我唯一需要添加的是<import type="android.view.View" /> 在数据标签中......


Wil*_*ute 8

在 textView 标记内的 xml 代码中,对于 android:text 属性,您使用了 @{viewmodel}。它只是引用您的 shopViewModel 类,您必须以该类中的文本变量为目标。然后基因。类文件错误将消失。

bindingImpl 错误主要是由于 XML-text 或 XML-onClick 属性的无效分配而产生的。