gpt4 book ai didi

android - 将 html Assets 加载到 webview 时出现问题

转载 作者:行者123 更新时间:2023-11-29 00:42:05 55 4
gpt4 key购买 nike

我在将项目 Assets 文件夹中的 html 文件加载到 Web View 时遇到困难。我已经查看了数十个教程和解决方案,但似乎没有一个适合我。

在我项目的 Assets 文件夹中,我有两个简单的 html 文件。 index.html 和 faq.html(计划将此结构用于我的帮助文档)

我的代码:

    WebView wv = (WebView)findViewById(R.id.webview1);
wv.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url)
{
view.loadUrl(url);
return true;
}
});
wv.loadUrl("file:///android_asset/index.html");

Web View 显示以下内容:

Web Page Not Available

The Web Page at file:///android_asset/index.html could not be loaded as:

The requested file was not found. index.html

从我读到的所有内容来看,我这里的内容应该可以工作,但事实并非如此。

最佳答案

你的用法是正确的,所以如果出现这个问题,你需要仔细检查index.html文件是否存在,也可以clean the project,然后rebuild

关于android - 将 html Assets 加载到 webview 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8737488/

55 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com