我正在使用Glide将动画gif图像加载到ImageView:
Glide.with(this).load(gifUrl).into(imageView)
除了我使用TouchImageView时,它工作正常,TouchImageView仅显示静态图像,不显示动画。
有什么解决办法吗?
答案 0 :(得分: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);
}
});