GIF Image display using WebView

后端 未结 8 809
北荒
北荒 2020-12-08 23:11

Can someone please provide a code to display GIF images in a webview ( I\'m already able to display the same using frame animation of png images) Now I want a way to display

8条回答
  •  死守一世寂寞
    2020-12-08 23:55

    Gifs are supported in web view.

    write a html file as following :

    
    
        
    Some text you display




    and store it in "assets" folder of you application also store your gif in the same folder. And do following to show it:

    webview.loadUrl("file:///android_asset/your_html.html");
    

提交回复
热议问题