@BidingMethod不适用于方法

时间:2016-11-14 07:24:50

标签: android data-binding

我正在使用此{/ 1}} here

BindingMethod

但它显示错误

enter image description here

如何使用@BindingMethod(type = InputView.class, attribute = "android:title", method = "setTitle")

1 个答案:

答案 0 :(得分:1)

当我把@BindingMethod放在类中时,会发生这个问题 所以把它放在上面

@BindingMethods({
        @BindingMethod(type = InputView.class, attribute = "app:title", method = "setTitle")
})
public class InputView extends LinearLayout {
   ...
}