GIF Image display using WebView

后端 未结 8 802
北荒
北荒 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:36

    Loads gif in a webview and fits it to the device screen without any HTML code...Try this code

    mWebView = ((CustomWebView)mRootView.findViewById(R.id.webview));
    mWebView.loadUrl("file:///android_asset/file.gif");
    mWebView.getSettings().setLoadWithOverviewMode(true);
    mWebView.getSettings().setUseWideViewPort(true);
    

提交回复
热议问题