我正在自定义View上实现两种方式的数据绑定。我遵循了official android developers,但仍然无法使其正常工作。我有一个旋钮可以控制value属性中的整数值。
class ControlKnob(context: Context, attributeSet : android.util.AttributeSet) : RelativeLayout(context, attributeSet), IUIControl {
companion object {
@JvmStatic
@BindingAdapter("value")
fun setValue(knob : ControlKnob, value : Int) {
if(knob.value != value) {
knob.value = value
}
}
@JvmStatic
@InverseBindingAdapter(attribute = "value")
fun getValue(knob : ControlKnob) : Int {
return knob.value
}
@JvmStatic
@BindingAdapter("app:valueAttrChanged")
fun setListeners( knob : ControlKnob, attrChange : InverseBindingListener) {
knob.setOnProgressChangedListener {
attrChange.onChange()
}
}
}
var value : Int = -1
set(value) {
field = value
valueView.text = stringConverter.invoke(value)
}
....
....
}
内部布局我是这样使用的:
<cz.abc.def.package.controls.ControlKnob
android:id="@+id/knob"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_row="0"
android:layout_column="0"
app:value="@={viewModel.value}"
app:label="Knob" />
我的视图模型:
@Bindable
fun getValue() : Int {
return someValue
}
fun setValue(value : Int) {
someValue = value
}
但是我仍然无法编译它。我得到
Cannot find a getter for cz.abc.def.package.controls.ControlKnob app:value that accepts parameter type 'int'
If a binding adapter provides the getter, check that the adapter is annotated correctly and that the parameter type matches.
这可能是什么原因?
答案 0 :(得分:1)
我知道了。原来,代码没有问题。我在gradle构建文件中缺少apply plugin: 'kotlin-kapt'
。在我将这一行添加到模块中的build.gradle后,它起作用了。
答案 1 :(得分:0)
也许您的监听器绑定适配器是错误的?对于the documentation,事件侦听器BindingAdapter的值应为"android:valueAttrChanged"
,并且您有"app:valueAttrChanged"
。