我很难@BindingAdapter
在我的项目中工作。
@BindingAdapter("imageUrl")
public static void setImageUrl(ImageView imageView, String url) {
Log.d("TEST","URL: " + url);
}
上面的代码显示了它是如何在我的 ViewModel 中实现的。没什么特别的。
<ImageView
android:id="@+id/image_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:layout_below="@id/profile_container"
app:imageUrl="@{item.imageUrl}"
tools:src="@drawable/placeholder_image"/>
这不起作用。命名空间应用程序未绑定。所以我错过了什么。我尝试关注 https://medium.com/google-developers/android-data-binding-custom-setters-55a25a7aea47#.6ygaiwooh 并查看他们如何设置 bindingAdapter。但是我错过了一些东西