简体   繁体   中英

How to Create Custom Inapp Browser?

Hi I want to add Some buttons over the inAppbrowser in my android application how to add here is my code

$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();

You can try following plugin that is already modified. cordova-plugin-themeablebrowser . You can refer its code for reference. Regards.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM