How do I access an instance variable inside a BindingAdapter when using Android Data Binding?

不问归期 提交于 2019-11-28 07:59:59

问题


So I'm using this popular data binding code snippet to load in image into imageview of list items by passing in URL:

  <ImageView
        android:layout_width="match_parent"
        android:layout_height="150dp""
        app:imageUrl="@{movie.imageUrl}"
        />

The Binding Adapter:

class Movie{
    boolean isLoaded;

    @BindingAdapter({"bind:imageUrl"})
        public static void loadImage(final ImageView view, String imageUrl) {

            Picasso.with(view.getContext())
                .load(imageUrl)
                .into(view, new Callback.EmptyCallback() {
                @Override public void onSuccess() {
                    //set isLoaded to true for the listview item
                    // but cannot access boolean isLoaded as it is non static.
                });
    }

If I simply make the BindingAdapter non-static then it throws error:

java.lang.IllegalStateException: Required DataBindingComponent is null     in class MovieTileBinding. A BindingAdapter in     com.example.moviesapp.Pojos.Results is not static and requires an object to     use, retrieved from the DataBindingComponent. If you don't use an inflation method taking a DataBindingComponent, use DataBindingUtil.setDefaultComponent or make all BindingAdapter methods static.

回答1:


Put whole movie instace through custom biding adapter:

 <ImageView
        android:layout_width="match_parent"
        android:layout_height="150dp""
        app:movie="@{movie}"
        />

The Binding Adapter:

class Movie{
boolean isLoaded;

@BindingAdapter({"movie"})
    public static void loadImage(final ImageView view, final Movie movie) {
        if(movie != null && moview.getImageUrl() != null){
          Picasso.with(view.getContext())
             .load(movie.getImageUrl())
             .into(view, new Callback.EmptyCallback() {
             @Override public void onSuccess() {
                 image.setLoaded(true);
             });
     }
}


来源:https://stackoverflow.com/questions/33904519/how-do-i-access-an-instance-variable-inside-a-bindingadapter-when-using-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!