kotlin databing Cannot find the setter for attribute xxx问题解决方案

xml中的代码
<ImageView
        android:id="@+id/image_iv"
        android:layout_width="80dp"
        android:layout_height="80dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:srcResource="@{viewmodel.count.get()}"
        />

bindingAdapter中的代码,这些都已经准备就绪就是编译不过

@BindingAdapter("app:srcResource")
@JvmStatic fun srcResource(view : ImageView,count: Int){
    val color = if(count > 10 ) Color.RED else Color.BLUE
    ImageViewCompat.setImageTintList(view, ColorStateList.valueOf(color))
    view.setImageResource(R.drawable.ic_person_black_96dp)
}

编译的时候报了以下错误:

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> android.databinding.tool.util.LoggedErrorException: Found data binding errors.
  ****/ data binding error ****msg:Cannot find the setter for attribute 'app:srcResourcet' with parameter type int on android.widget.ImageView.
  ****\ data binding error ****

这是因为写好的注解代码没有编译的原因。需要在app gradle中的添加一行代码:

apply plugin: 'kotlin-kapt'

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值