4

我有多个 html 文件保存在 assets 文件夹中。我的 html 文件之一是:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
    .outer{width:300px; height:460px; padding:10px;}
</style>
</head>

<body>
<div class="outer">
    <h4 style="text-align:right; margin-bottom:30px; width:300px;"><a href="#0">HOME</a></h4>
    <h1>World Map -01</h1>
    <img src="world_map.png" width="300" alt="" />
    <h4 style="text-align:right; margin-top:30px; width:300px;"><a href="#2">NEXT</a></h4>
</div>
</body>
</html>

还有 3 个 html 文件与此相同。将加载第一页。在这里,我想通过检查 href 来获取 href 并手动加载链接。

我的代码是:

public class WebvwActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        WebView web=(WebView) findViewById(R.id.web);
        web.getSettings().setJavaScriptEnabled(true);
        web.loadUrl("file:///android_asset/demo.html");
}
}

我想通过检查href值来获取href值并加载链接?

提前致谢

4

2 回答 2

0

尝试使用以下方法之一以正常方式运行它:

<li><a href="testing2.html" data-transition="none" rel="external">testing2</a></li>

并将您的 testing2.html 文件放在 www 文件夹中

于 2012-09-08T06:24:20.343 回答
0

您可以为此使用 webview 的 WebViewClient。有一个函数shouldOverrideUrlLoading可用于检测 href 值并可以相应地对其进行操作。

于 2012-09-08T06:28:39.150 回答