javascript - 如何使用 phonegap 从 HTML 页面导航到 native 屏幕?

标签 javascript html cordova mobile cross-platform

我已经使用 PhoneGap Framework 制作了适用于 Android 和 iOS 的 Hello world 测试应用。

我想从 HTML 页面调用 native 屏幕。

如何从 HTML 页面调用 native 屏幕?

反之亦然。

最佳答案

您不能直接打开任何 native 屏幕。如果您想使用设备的 native API 意味着如果您想打开 native 屏幕,那么 PhoneGap 中有几个可用的 API。使用这些 API,您可以在您的设备中实现 native 功能使用 HTML、CSS 和 Javascript 的应用程序。

这是该 API 的链接: PhoneGap API

这是一个示例代码。这将打开设备的照片库并在您的 HTML 页面中显示所选图像。

<!DOCTYPE html>
<html>
  <head>
    <title>Capture Photo</title>

    <script type="text/javascript" charset="utf-8" src="cordova-x.x.x.js"></script>
    <script type="text/javascript" charset="utf-8">

    var pictureSource;   // picture source
    var destinationType; // sets the format of returned value 

    // Wait for Cordova to connect with the device
    //
    document.addEventListener("deviceready",onDeviceReady,false);

    // Cordova is ready to be used!
    //
    function onDeviceReady() {
        pictureSource=navigator.camera.PictureSourceType;
        destinationType=navigator.camera.DestinationType;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoDataSuccess(imageData) {
      // Uncomment to view the base64 encoded image data
      // console.log(imageData);

      // Get image handle
      //
      var smallImage = document.getElementById('smallImage');

      // Unhide image elements
      //
      smallImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      smallImage.src = "data:image/jpeg;base64," + imageData;
    }

    // Called when a photo is successfully retrieved
    //
    function onPhotoURISuccess(imageURI) {
      // Uncomment to view the image file URI 
      // console.log(imageURI);

      // Get image handle
      //
      var largeImage = document.getElementById('largeImage');

      // Unhide image elements
      //
      largeImage.style.display = 'block';

      // Show the captured photo
      // The inline CSS rules are used to resize the image
      //
      largeImage.src = imageURI;
    }

    // A button will call this function
    //
    function capturePhoto() {
      // Take picture using device camera and retrieve image as base64-encoded string
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 50,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function capturePhotoEdit() {
      // Take picture using device camera, allow edit, and retrieve image as base64-encoded string  
      navigator.camera.getPicture(onPhotoDataSuccess, onFail, { quality: 20, allowEdit: true,
        destinationType: destinationType.DATA_URL });
    }

    // A button will call this function
    //
    function getPhoto(source) {
      // Retrieve image file location from specified source
      navigator.camera.getPicture(onPhotoURISuccess, onFail, { quality: 50, 
        destinationType: destinationType.FILE_URI,
        sourceType: source });
    }

    // Called if something bad happens.
    // 
    function onFail(message) {
      alert('Failed because: ' + message);
    }

    </script>
  </head>
  <body>
    <button onclick="capturePhoto();">Capture Photo</button> <br>
    <button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br>
    <button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button><br>
    <button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button><br>
    <img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
    <img style="display:none;" id="largeImage" src="" />
  </body>
</html>

希望这会有所帮助。

注意:

您将无法使用 HTML 在您的应用程序中直接打开任何屏幕。如果您正在使用 PhoneGap 开发应用程序,则必须通过 phonegap API。

关于javascript - 如何使用 phonegap 从 HTML 页面导航到 native 屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16540655/

相关文章:

有关 CPU 消耗的 JavaScript 命名函数和事件处理程序

android - PhoneGap 自定义语言设置

ios - 允许用户浏览文件和上传所选文件的 Cordova 插件 (iOS)

javascript - 使用 Knockout 检查是否未定义

javascript - xmlHttpRequest可以访问Firefox中的授权 header 吗

javascript - 图像缩放大小取决于浏览器大小

javascript - 通过JQuery检测Div内同级类是否发生变化

html - div 框对齐中的空间问题

javascript - 关闭应用程序时在 Windows Phone 8.1 中处理 toast 通知

javascript - 如何在不使用位置属性的情况下重叠表格(td)文本