我有一个使用Apache Cordova开发的混合应用程序,在该应用程序中,我使用的是“inappbrowser”。现在的要求是从浏览器中打开“相机”或“图库”,我不知道如何实现此目的。

为了开发该应用程序,我使用了bone.js,JQuery,bootstrap.js。

这是Backbone的View的代码片段:

  var mainScreenView = Backbone.View.extend({

        el: $('.panel'),

        templateMainScreen: _.template($('#templateOne').html()),

        events: {

            "click #inputBtnSubmit": "openWebView",
            "click #clickSettings": "openSettings"
        },

        initialize: function(){
            this.render();
        },

        render: function () {

            alert($(this.el).find('.panel-body'));
            var bindElement = $(this.el).find('.panel-body');
            bindElement.html(this.templateMainScreen());
            return this;
        },

        openWebView: function () {

            var textValue = $('#inputValue').val();
                       cordova.InAppBrowser.open('**Link to an external webpage which asks for Camera or Gallery control** ', '_blank', 'location=no');

       //  After inappbrowser is called to load a external webpage (On a button click Camera Intent or Gallery should open)
        }

    });

    var appView = new mainScreenView;

提前致谢。

最佳答案

我没有使用inappBrowser,而是最终实现了HTML iframe。也就是说,我希望inappBrowser做些什么,现在我可以使用iframe来做。您可以访问“相机”或“图库”或“文件资源管理器”,类似于“ native 电话”的浏览器。

这是我为解决上述问题所做的工作:

   <html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      <meta name="format-detection" content="telephone=no" />
      <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
      <title>Hello World!</title>
      <style type='text/css'>
        body, html, iframe {
                     margin: 0;
                     padding: 0;
                     border: 0px none;
                     width: 100%;
                     height: 100%;
        }
      </style>
 </head>
 <body>
     <script type="text/javascript" src="cordova.js"></script>


     <iframe src="http://SomeWebPage" width="97%" height="97%"></iframe>
 </body>



希望这对其他人有帮助。

关于cordova - 在Apache Cordova中从 "inappbrowser "打开Camera或Gallery,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30074684/

10-13 06:32