本文介绍了找不到带有参数的属性的设置器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用BindingAdapter
在DataBinding
上工作.这是我的自定义方法.
I am working on DataBinding
with BindingAdapter
. Here is my custom method.
@BindingAdapter("{bind:fadevisible}")
public static void setFadeVisible(LinearLayout view, int visible) {
Log.e("Bindings", "setFadeVisible: ");
}
在xml文件中,我这样称呼它
And in xml file i am calling it like
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:fadevisible="@{1}"/>
但是显示错误
我已经检查了此和此线程,但是以某种方式它对我没有帮助,如您所见我从xml传递int
,在BindingAdapter
中也用int
值提到了LinearLayout
.
I have checked this and this thread but somehow it is not helping me, as you can see i am passing int
from xml and in BindingAdapter
also i have mentioned LinearLayout
with int
value.
即使我有另一种方法,只是参数不同且工作正常
Even i have another method, where just parameters are different and its working fine
@BindingAdapter({"bind:image_round"})
public static void loadRoundImage(ImageView imageView, String url)
推荐答案
您的@BindingAdapter
定义对我来说有点奇怪
Your @BindingAdapter
definition looks a little bit odd to me
@BindingAdapter("{bind:fadevisible}")
这与
@BindingAdapter({"bind:fadevisible"})
或
@BindingAdapter("bind:fadevisible")
应该可以正常工作.
这篇关于找不到带有参数的属性的设置器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!