4

アセットフォルダに保存した複数のhtmlファイルがあります。私のhtmlファイルの1つは次のとおりです。

<!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>

これと同じHTMLファイルがあと3つあります。最初のページが読み込まれます。ここで、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を使用できます。href関数shouldOverrideUrlLoadingがあります。これは、href値を検出するために使用でき、それに応じて実行できます。

于 2012-09-08T06:28:39.150 に答える