使用特定文件夹中的webview加载图像

时间:2012-04-18 15:12:42

标签: android image webview

您好我制作的程序可以对文件夹中的图像进行排序。(路径为sdcard / scheduler / pic.jpg)。 我要加载这张图片并显示它。我的照片应该可以缩放。所以我使用网页视图来显示图像。代码在

之下
mWebView = (WebView) findViewById(R.id.webview);

         mWebView.getSettings().setAllowFileAccess(true);
         mWebView.getSettings().setJavaScriptEnabled(true);
         mWebView.getSettings().setBuiltInZoomControls(true);

  String imagePath = "file:/sdcard/Schedular/233322.jpg";
          String html = "<html><head></head><body><img src=\""+ imagePath + "\"></body></html>";
          mWebView.loadData(html, "text/html","utf-8");

此代码不加载图像的问题。它只给出白屏。我认为这是路径的问题。请给出解决方案..

1 个答案:

答案 0 :(得分:0)

您为图像提供了错误的路径。 Environment.getExternalStorageDirectory()将为您提供SD卡路径。从这个起点开始,你应该建立你的形象的路径。