I tried to do some analog of example from here: http://www.mutualmobile.com/posts/using-data-binding-api-in-recyclerview And everything works correct except image url binding. I
Only try to rename the reference inside of the @BindingAdapter
@BindingAdapter({"bind:image_url"}) public static void loadImage(ImageView imageView, String url) { Picasso.with(imageView.getContext()).load(url).into(imageView); }
And in your layout this:
... ... ...