在Android WebView中加载包含图像的本地HTML文件

时间:2016-07-27 21:36:00

标签: android android-webview android-internal-storage

我已从Environment.DIRECTORY_DOWNLOADS的服务器下载了2个文件(1个HTML文件和1个图片)。现在我正在尝试加载保存在webview中的Environment.DIRECTORY_DOWNLOADS中的HTML文件(带图像)。但没有任何东西被加载。

有什么问题?

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    webView = (WebView) findViewById(R.id.webView);
    button = (Button) findViewById(R.id.button);

    File file = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
    File htmlFile = new File(file.getAbsolutePath()+"/test.html");
    webView.loadUrl(htmlFile.getAbsolutePath());
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            try {
                myDownload("http://xxxxxx.com/xxxx/test.html");
                myDownload("http://xxxxxx.com/xxxx/mypic1.jpg");
            } catch (Exception e) {
                Toast.makeText(MainActivity.this, e.getMessage() + "\n" + e.getCause(), Toast.LENGTH_LONG).show();
            }
            //
        }
    });
}

0 个答案:

没有答案