在InAppBrowser中打开外部页面android 2.3不起作用

时间:2013-05-24 14:37:53

标签: android ios cordova inappbrowser

我有这个小问题,在iOS InAppBrowser中工作得很好,但在android中没办法,我打开白名单中的所有外部页面,我把一个console.log看看是否调用了方法,但是这里没有打开我如何处理

link:a href =“#”onclick =“openInAppBrowser('my link);”类= “最近通话” >

和方法

enter code here

function openInAppBrowser(url){
    console.log('click in app brownser');
    console.log('page: ' + url);
    window.open(encodeURI(url), '_blank', 'location=yes');
}

有什么想法吗?在iOS工作正常,但在Android没办法,如果任何人可以帮助我

1 个答案:

答案 0 :(得分:0)

您是否在网络视图上启用了JavaScript?

http://developer.android.com/guide/webapps/webview.html

 WebView myWebView = (WebView)   findViewById(R.id.webview);
 WebSettings webSettings = myWebView.getSettings();
 webSettings.setJavaScriptEnabled(true)