のサーバーから 2 つのファイル (1 つの HTML ファイルと 1 つの画像) をダウンロードしましたEnvironment.DIRECTORY_DOWNLOADS
。Environment.DIRECTORY_DOWNLOADS
今、webview に保存されている 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();
}
//
}
});
}