0

我正在使用cordova 1.8,我想在我的应用程序本身中使用本机浏览器打开外部网页,我搜索但没有得到答案。但是我写了一个代码片段。有什么建议么?

<!Doctype>
<html>
<head>
    <title>demo browser</title>
    <script type="text/javascript" charset="utf-8" src="cordova-1.8.0.js"></script>
    <script type="text/javascript" charset="utf-8" src="childbrowser.js"></script>
    <script>
    function onDeviceReady() {
        window.plugins.childBrowser.showWebPage("http://www.google.com", { showLocationBar: true });
    }
    </script>
</head>
<body>
hello visitor<br><br>
<button onClick="onDeviceReady();">click to open</button></body>
</html>
4

1 回答 1

0

只需调用意图查看网址:

String uri_str;
Uri uri = Uri.parse(uri_str);
Intent i = new Intent(Intent.ACTION_VIEW, uri);
startActivity(i);
于 2012-06-22T06:06:35.430 回答