How to show Animated GIF image in android application?

后端 未结 11 1614
臣服心动
臣服心动 2020-12-28 13:16

I want to show an animated GIF image in an android application like the image below. I have tried the webview but no success. How to show the animated gif in the application

11条回答
  •  再見小時候
    2020-12-28 13:52

    I tried so many library to use Animated gif . But every library is lagging and crushing . But now , after one or two day research i got a idea to use animated gif and the performance is very good no lagging no crushing.

    Solution is that use Glide

    Follow the below step .

    in xml file.

    
    
    
        
    
     
    

    and in your java file

     ImageView imageView = findViewById(R.id.splace_image_view);
    
    Glide
            .with(this)
            .load(R.drawable.football)
            .into(imageView);
    

提交回复
热议问题