我是 Android 开发的新手。
我想将html 文件加载到webview中。
请注意,像这样的 SO 上有很多相关问题,但它们都涉及从assets文件夹中获取 **.html* 。
但我想从本地文件夹加载 html 文件,比如“D://abc.html”,因为如果我的 html 大约为 10Mb,那么相应的 apk 大小也会达到 10mb。
任何帮助表示赞赏。
编辑
我试过webView.loadUrl("file:///D:/Projects/myWebsite/index.html");
但它给出了Web page not available
and File not found error
。