-2

我正在使用 Glide 将动画 gif 图像加载到 ImageView:

Glide.with(this).load(gifUrl).into(imageView)

这很好用,除非我使用TouchImageView, TouchImageView 只显示静态图像,没有动画。

有什么解决办法吗?

4

1 回答 1

0
 Glide.with(this).asGif().load(gifUrl).into(new SimpleTarget<GifDrawable>() {
 @Override
       public void onResourceReady(GifDrawable resource, Transition<? super GifDrawable> transition) {
              resource.start();
              view.setImageDrawable(resource);
              view.setZoom(1f);
       }
});
于 2019-04-29T02:16:29.047 回答