跳转至

WebView加载本地存储的网页

本地存储,包括app内部的存储,手机公共的存储位置。

为了演示方便,我们把assets里的html文件复制到app存储或SD卡上。 再去显示这个网页。

加载app存储中的网页

我们把网页文件放到app的私有目录中。

路径为:/data/user/0/com.rustfisher.tutorial2020/files/sample.html

url要以file:// 开头: file:///data/user/0/com.rustfisher.tutorial2020/files/sample.html

设置WebSettings,允许读取文件等等。

String url = "";
File htmlFile = new File(getFilesDir(), "sample.html");
Log.d(TAG, htmlFile + "\nfile exits:  " + htmlFile.exists());
url = "file://" + htmlFile.getAbsolutePath();
Log.d(TAG, "url: " + url);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setAllowFileAccess(true);
webSettings.setAllowFileAccessFromFileURLs(true);
webSettings.setAllowContentAccess(true);
webSettings.setDomStorageEnabled(true);
webView.loadUrl(url);

一定不能忘记file:// 开头

加载sd卡中的网页

与app内部存储类似,只需要修改路径。

例如在模拟器上的url为 file:///storage/emulated/0/sample.html

🧑🏻‍💻 示例代码

本站说明

一起在知识的海洋里呛水吧。广告内容与本站无关。如果喜欢本站内容,欢迎投喂作者,谢谢支持服务器。如有疑问和建议,欢迎在下方评论~

📖AndroidTutorial 📚AndroidTutorial 🙋反馈问题 🔥最近更新 🍪投喂作者

Ads