android加载gif的时候先加载一张缩略图 点击加载动图怎么实现的?
PHPz
PHPz 2017-04-17 17:27:11
0
1
506

最近写gif浏览的app,暂时用的glide加载gif ,试了Fresco感觉速度不如glide,看到一些app是先加载缩略图,点击在加载动图,感觉体验不错,想问一下是怎么实现的?是服务端那边处理生成一张缩略图吗?还是我这边处理?如果我这边处理是怎么处理?

PHPz
PHPz

学习是最好的投资!

reply all(1)
阿神

The server saves a gif image and sends the address of the animated image when requesting.
Load the first frame of the dynamic image:

Glide.with(context).load(url).asBitmap().into(imageview);

Click event to load dynamic image:

Glide.with(context).load(url).asGif().into(imageview);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template