2012-06-22 74 views
0

我使用科爾多瓦1.8,我想在我的應用程序本身使用本地瀏覽器打開外部網頁,我搜索但沒有得到答案。但是我寫了一段代碼片段。 有什麼建議嗎?如何使用java腳本在android中打開外部頁面?

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

嘗試谷歌搜索 「的Android的WebView」 – chaoskreator

回答

0

只要打電話的意圖來查看網址:

String uri_str; 
Uri uri = Uri.parse(uri_str); 
Intent i = new Intent(Intent.ACTION_VIEW, uri); 
startActivity(i); 
相關問題