关于具有数据绑定For View模型的Kotlin

时间:2018-12-29 08:12:32

标签: kotlin

在Kotlin中将数据绑定与视图模型一起使用时,出现运行时错误。

我的xml代码是这样的:

<data >
    <variable name="wordData"
        type="com.example.android.roomwordssample.Word"/>
</data>

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">



<TextView
    android:id="@+id/textView"
    style="@style/word_title"
    android:text="@{word.word}"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_orange_light" />

我的适配器的代码如下:

inner class WordViewHolder(val binding: RecyclerviewItemBinding):
RecyclerView.ViewHolder(binding.root)

运行时出现此错误:

  

e:[kapt]发生异常:android.databinding.tool.util.LoggedErrorException:发现了数据绑定错误。

1 个答案:

答案 0 :(得分:0)

请确保输入与您输入的数据相同的名称

<data >
    <variable name="wordData"
        type="com.example.android.roomwordssample.Word"/>
</data>

现在将变量名word替换为wordData,即可解决您的错误。

<TextView
    android:id="@+id/textView"
    style="@style/word_title"
    android:text="@{word.word}"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/holo_orange_light" />