我正在这样使用BindingMethod
here
@BindingMethod(type = InputView.class, attribute = "android:title", method = "setTitle")
但它显示错误
如何使用
BindingMethod
? 最佳答案
当我将@BindingMethod放在类中时,会发生此问题。
所以放在班上
@BindingMethods({
@BindingMethod(type = InputView.class, attribute = "app:title", method = "setTitle")
})
public class InputView extends LinearLayout {
...
}
关于android - @BidingMethod不适用于方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40583738/