我目前正在开发适用于 android 和 ios 的混合应用程序。它使用带有 phonegap 3.0 的 inappbrowser 插件。我需要隐藏 url 和导航按钮。根据帖子Cordova InAppBrowser - 如何禁用 URL 和导航栏?
我怎样才能为Android项目做同样的事情
提前致谢!阿伦沙提安
我目前正在开发适用于 android 和 ios 的混合应用程序。它使用带有 phonegap 3.0 的 inappbrowser 插件。我需要隐藏 url 和导航按钮。根据帖子Cordova InAppBrowser - 如何禁用 URL 和导航栏?
我怎样才能为Android项目做同样的事情
提前致谢!阿伦沙提安
你必须在 html 页面中使用这个看到这个
http://docs.phonegap.com/en/2.3.0/cordova_inappbrowser_inappbrowser.md.html
function onDeviceReady() {
var ref = window.open('http://apache.org', '_blank', 'location=no');
ref.addEventListener('loadstart', function() { alert('start: ' + event.url); });
ref.addEventListener('loadstop', function() { alert('stop: ' + event.url); });
ref.addEventListener('exit', function() { alert(event.type); });
}
在 config.xml 文件中,确保 URL 的模式与 allow-intent 标记匹配。
<allow-intent href="http://*/*/*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*" />