小编lon*_*gdw的帖子

WebView无法加载图片android

<img src='http://lt.ltcx.net.cn:109/upload/image/XheditorProjData/2013/10/18/31c314e0-a76a-4a72-8f9e-991d73a44990.jpg' alt='' />
Run Code Online (Sandbox Code Playgroud)

我想用webview加载图片,这些是我的代码:

mWebView = (WebView) findViewById(R.id.webview);
    // ???????
    mWebView.getSettings().setDefaultTextEncodingName("UTF-8");
    mWebView.getSettings().setLayoutAlgorithm(
            LayoutAlgorithm.SINGLE_COLUMN);
    mWebView.getSettings().setBlockNetworkImage(false);
     mWebView.getSettings().setJavaScriptEnabled(true);
     mWebView.loadDataWithBaseURL(null, url, "text/html",
                "UTF-8", null);
Run Code Online (Sandbox Code Playgroud)

但是图像无法显示.我使用HttpURLConnection读取二进制流来加载这个url,它可以工作.我不知道为什么我不能用webview加载图像.

android webview

0
推荐指数
1
解决办法
2208
查看次数

标签 统计

android ×1

webview ×1