基本上,我有一个指向内部“note.html”文件的 Webview。
在这个用 HTML 编写的note.html文件中,我有一个网站HREF
,但是当我在设备上单击它时,我收到一条错误消息:
"the webpage at file:///android/asset/www.blahblah.com might be temporarily down ...etc."
我有点意识到我必须解析 URL 或类似的东西,并且非常感谢有关如何获取HREF
链接以打开浏览器的正确 Web 链接的响应。
变量: private static final String tip_URL = "file:///android_asset/tip.html";
onCreate: WebView mywebview = (WebView) findViewById(R.id.webview); mywebview.loadUrl(tip_URL);
这在移动设备上运行良好,但是,在 tip.html 中有一个网站链接,当点击时我希望打开浏览器以访问该网站..它不是另一个本地页面..