search

Home  >  Q&A  >  body text

android加载gif的时候先加载一张缩略图 点击加载动图怎么实现的?

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

PHPzPHPz2887 days ago565

reply all(1)I'll reply

  • 阿神

    阿神2017-04-17 17:29:11

    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);

    reply
    0
  • Cancelreply