我已在html
文件夹中有一个名为myPage.html
的{{1}}页面。就像这样......
assets
我需要在没有互联网连接时加载此<html>
<body>
Hello....
</body>
</html>
,并在html
中显示指向用户的链接。链接是动态的,所以
我无法在webview
中对其进行硬编码。这是我用于链接的代码 -
html
因此要求是显示getDataFromServer() + "html/MyRules.html"
@Override
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
view.setBackgroundColor(0);
view.loadUrl("file:///android_asset/myPage.html"); //Also display link in webview but how???
}
以及html
中的链接。该链接应该是可点击的。我该怎么做?