您好我想在我的Android应用程序中添加一些按钮覆盖inAppbrowser如何添加这里是我的代码
$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();