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

前端 未结 3 1869
独厮守ぢ
独厮守ぢ 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:07

    Set the argument of BindingAdapter annotation to "app:imageUrl". So you must have this:

    @BindingAdapter("app:imageUrl")
    

    instead of this:

    @BindingAdapter("bind:imageUrl")
    

    And also what @Alexander Myznikov said - change app.imageUrl to app:imageUrl

提交回复
热议问题