Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
254 views
in Technique[技术] by (71.8m points)

android - How to load animated gif from drawable in ImageView using binding adapter?

I want to display an animated file in ImageView. But my gif files animation not working.

question from:https://stackoverflow.com/questions/65831069/how-to-load-animated-gif-from-drawable-in-imageview-using-binding-adapter

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

We can do this using the latest Glide library. Add the library dependency to your project.

Define binding adapter method as below

 @BindingAdapter(value={"imageUrl", "placeholder"}, requireAll=false)
    public static void setImageUrl(ImageView imageView, String url,
            Drawable placeHolder) {
        if (url == null) {
            imageView.setImageDrawable(placeholder);
        } else {
            MyImageLoader.loadInto(imageView, url, placeholder);
        }
    }

add the tag in your ImageView as below

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:imageUrl="@{product.imageUrl}"
        app:placeholder="@{@drawable/shadowAvatar}"/>

Now rebuild project and run. feel free to comment if any help needed.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...