您好我想添加在inAppbrowser有些按鈕在我的Android應用程序如何在這裏補充的是我的代碼如何創建自定義的InApp瀏覽器?
$scope.customInappbrowser = function() {
$cordovaInAppBrowser.open('https://www.google.co.in', '_blank', options)
.then(function(event) {
// success
})
.catch(function(event) {
// error
});
// window.open(v, "_system", "location=yes");
}
$scope.customInappbrowser();
您必須在插件的本機文件中進行這些更改。 –
有沒有可用的例子? – Gopinath