How to show Animated GIF image in android application?

后端 未结 11 1609
臣服心动
臣服心动 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:58

    You could just add a webview and show a gif image in that, Like:

    webView.getSettings().setJavaScriptEnabled(true);
        webView.setWebViewClient(new WebViewClient());
        webView.loadUrl("https://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Rotating_earth_(large).gif/200px-Rotating_earth_(large).gif");
    

    This will show the gif image in your app.

    Hope it helps! Good Luck!

提交回复
热议问题