Android Data Binding Error:Execution failed java.lang.RuntimeException:

前端 未结 3 1866
独厮守ぢ
独厮守ぢ 2021-01-22 19:25

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

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-22 20:12

    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:

    ...
           
        
    
    ...
    
    
    ...
    

提交回复
热议问题