Gif not animated in custom listview

前端 未结 5 574
南方客
南方客 2021-02-02 03:51

\"enter

I want to display animated GIF images in my custom listview.my GIF image is get in

5条回答
  •  清酒与你
    2021-02-02 04:48

    Use the Glide image loading library, it has built-in support for GIFs and the syntax is the same loading a JPEG file:

    Glide.with(this).load("http://.../anim.gif").into(imageView);
    

    See the wiki for more and run the Gihpy sample to be amazed :)

提交回复
热议问题