PhoneGap 插件简介

来源:互联网 发布:json里面放对象 编辑:程序博客网 时间:2024/05/16 08:50

转自 http://blog.csdn.net/yyan/article/details/6664863


一、PhoneGap平台

前不久PhoneGap发布了1.0版本,这为移动开发大家族提供了又一个跨平台的解决方案。开发者只要有JavaScript、CSS3、Html5的基础就可以快速开发移动应用,并且一次开发支持iOS、iOS(xcode 4)、Android、WebOS、Blackberry、Symbian 六大平台。不过,JavaScript的速度虽然在近些年提高了100倍,其速度还是无法和原生代码相比。在编写复杂的业务逻辑时JavaScript显得力不从心。那么PhoneGap有没有办法解决这个问题呢?答案是肯定的。PhoneGap平台提供了插件功能,开发者可以将重量级的功能封装在原生代码开发的插件中,并将接口暴露给JavaScript,JavaScript在调用插件功能时都是非阻塞的,所以并不影响JavaScript层的性能。下面我们就看看如何编写和调用一个PhoneGap插件吧。

二、编写插件

由于要写原生代码,所以各个平台插件的编写略有不同。我们以Android为例吧。这个是PhoneGap官方的例子,原文网址:http://wiki.phonegap.com/w/page/36753494/How%20to%20Create%20a%20PhoneGap%20Plugin%20for%20Android 需要翻墙。

1.插件功能

PhoneGap提供了文件读写的Api,但没有提供列出文件清单的功能。我们编写一个名为 DirectoryListingPlugin 的插件来实现列表SDCARD上文件的功能吧。

2.创建一个Android工程

如下图所示:

step1



3.包含PhoneGap依赖

  • 下载PhoneGap并解压
  • 在工程根目录新建目录/libs
  • 拷贝 phonegap.jar 到 /libs
注:由于是写插件,所以只有phonegap.jar就够了。要建立完整的PhoneGap应用,可参考http://www.phonegap.com/start/#android 

4.实现插件类




代码:

view plain
  1. /**  
  2.  * Example of Android PhoneGap Plugin  
  3.  */  
  4. package com.trial.phonegap.plugin.directorylisting;  
  5.   
  6.   
  7. import java.io.File;  
  8.   
  9.   
  10. import org.json.JSONArray;  
  11. import org.json.JSONException;  
  12. import org.json.JSONObject;  
  13.   
  14.   
  15. import android.util.Log;  
  16.   
  17.   
  18. import com.phonegap.api.Plugin;  
  19. import com.phonegap.api.PluginResult;  
  20. import com.phonegap.api.PluginResult.Status;  
  21.   
  22.   
  23. /**  
  24.  * PhoneGap plugin which can be involved in following manner from javascript  
  25.  * <p>  
  26.  * result example -  
  27.  * {"filename":"/sdcard","isdir":true,"children":[{"filename":"a.txt"  
  28.  * ,"isdir":false},{..}]}  
  29.  * </p>  
  30.  *   
  31.  * <pre>  
  32.  * {@code  
  33.  * successCallback = function(result){  
  34.  *     //result is a json  
  35.  *    
  36.  * }  
  37.  * failureCallback = function(error){  
  38.  *     //error is error message  
  39.  * }  
  40.  *   
  41.  * DirectoryListing.list("/sdcard",  
  42.  *        successCallback  
  43.  *        failureCallback);  
  44.  *                                   
  45.  * }  
  46.  * </pre>  
  47.  *   
  48.  * @author Rohit Ghatol  
  49.  *   
  50.  */  
  51. public class DirectoryListPlugin extends Plugin {  
  52.     /** List Action */  
  53.     public static final String ACTION = "list";  
  54.   
  55.   
  56.     /*  
  57.      * (non-Javadoc)  
  58.      *   
  59.      * @see com.phonegap.api.Plugin#execute(java.lang.String,  
  60.      * org.json.JSONArray, java.lang.String)  
  61.      */  
  62.     @Override  
  63.     public PluginResult execute(String action, JSONArray data, String callbackId) {  
  64.         Log.d("DirectoryListPlugin", "Plugin Called");  
  65.         PluginResult result = null;  
  66.         if (ACTION.equals(action)) {  
  67.             try {  
  68.                 String fileName = data.getString(0);  
  69.                 JSONObject fileInfo = getDirectoryListing(new File(fileName));  
  70.                 Log  
  71.                         .d("DirectoryListPlugin", "Returning "  
  72.                                 + fileInfo.toString());  
  73.                 result = new PluginResult(Status.OK, fileInfo);  
  74.             } catch (JSONException jsonEx) {  
  75.                 Log.d("DirectoryListPlugin", "Got JSON Exception "  
  76.                         + jsonEx.getMessage());  
  77.                 result = new PluginResult(Status.JSON_EXCEPTION);  
  78.             }  
  79.         } else {  
  80.             result = new PluginResult(Status.INVALID_ACTION);  
  81.             Log.d("DirectoryListPlugin", "Invalid action : " + action  
  82.                     + " passed");  
  83.         }  
  84.         return result;  
  85.     }  
  86.   
  87.   
  88.     /**  
  89.      * Gets the Directory listing for file, in JSON format  
  90.      *   
  91.      * @param file  
  92.      *            The file for which we want to do directory listing  
  93.      * @return JSONObject representation of directory list. e.g  
  94.      *         {"filename":"/sdcard"  
  95.      *         ,"isdir":true,"children":[{"filename":"a.txt"  
  96.      *         ,"isdir":false},{..}]}  
  97.      * @throws JSONException  
  98.      */  
  99.     private JSONObject getDirectoryListing(File file) throws JSONException {  
  100.         JSONObject fileInfo = new JSONObject();  
  101.         fileInfo.put("filename", file.getName());  
  102.         fileInfo.put("isdir", file.isDirectory());  
  103.         if (file.isDirectory()) {  
  104.             JSONArray children = new JSONArray();  
  105.             fileInfo.put("children", children);  
  106.             if (null != file.listFiles()) {  
  107.                 for (File child : file.listFiles()) {  
  108.                     children.put(getDirectoryListing(child));  
  109.                 }  
  110.             }  
  111.         }  
  112.         return fileInfo;  
  113.     }  
  114. }  

5.将插件类导出成jar 包

Eclipse中如下操作:

  • 在要生成jar的项目上右击,选择菜单上的Export(导出)
  • 导出类型选择Jar File
  • 选择或者输入生成路径
  • 选择要导出的类
我们导出成directorylist.jar

6.实现JavaScript插件

  • 创建一个名为DirectoryListing的类
  • 创建一个成员函数list()
  • 在成员函数中调用PhoneGap.exec(<<successCallback>>,<<failureCallback>>,<<Plugin Name>>,<<Action Name>>,<<Arguments Array>>);
  • 将js文件保存为directorylisting.js
代码:

view plain
  1. /** 
  2.  *   
  3.  * @return Object literal singleton instance of DirectoryListing 
  4.  */  
  5. var DirectoryListing = {   
  6. /** 
  7.  * @param directory The directory for which we want the listing 
  8.  * @param successCallback The callback which will be called when directory listing is successful 
  9.  * @param failureCallback The callback which will be called when directory listing encouters an error 
  10.  */  
  11.     list: function(directory,successCallback, failureCallback) {  
  12.         return PhoneGap.exec(successCallback,        //Success callback from the plugin  
  13.                              failureCallback,        //Error callback from the plugin  
  14.                              'DirectoryListPlugin',  //Tell PhoneGap to run "DirectoryListingPlugin" Plugin  
  15.                              'list',                 //Tell plugin, which action we want to perform  
  16.                              [directory]);           //Passing list of args to the plugin  
  17.     }  
  18. };  

三、测试

1.创建一个PhoneGap应用 http://www.phonegap.com/start/#android

2.将 directorylisting.jar 加入工程依赖

3.将directorylisting.js放入到 /assets/www 目录下。

4.在 /res/xml/plugins.xml 文件中添加 

view plain
  1. <plugin name="DirectoryListPlugin" value="com.trial.phonegap.plugin.directorylisting.DirectoryListPlugin" />  

5.在index.html中调用DirectoryListing.list

代码:
view plain
  1. <!DOCTYPE HTML>  
  2. <html>  
  3.      <head>  
  4.           <title>PhoneGap</title>  
  5.      </head>  
  6.      <body>  
  7.           <!-- Button -->  
  8.           <input disabled id="list-sdcard" type="button" value="List SDCard Contents"  />  
  9.           <hr>  
  10.    
  11.           <!-- Place Holder for placing the SD Card Listing -->  
  12.           <div id="result"></div>  
  13.    
  14.           <hr>  
  15.    
  16.           <script type="text/javascript" src="phonegap-1.0.0.js"></script>  
  17.           <script type="text/javascript" src="directorylisting.js"></script>  
  18.           <script type="text/javascript" >  
  19.    document.addEventListener('deviceready', function() {  
  20.    var btn = document.getElementById("list-sdcard");  
  21.    btn.onclick = function() {  
  22.     DirectoryListing.list(    "/sdcard",  
  23. function(r){printResult(r)},  
  24. function(e){log(e)}  
  25. );  
  26.     }  
  27.     btn.disabled=false;  
  28.   }, true);  
  29.    
  30.    
  31.  function printResult(fileInfo){  
  32.   var innerHtmlText=getHtml(fileInfo);      
  33.   document.getElementById("result").innerHTML=innerHtmlText;  
  34.  }  
  35.    
  36.  function getHtml(fileInfo){  
  37.  var htmlText="<ul><li>"+fileInfo.filename;  
  38.  if(fileInfo.children){  
  39.    
  40.  for(var index=0;index<fileInfo.children.length;index++){  
  41.  htmlTexthtmlText=htmlText+getHtml(fileInfo.children[index]);  
  42.  }  
  43.  }  
  44.  htmlTexthtmlText=htmlText+"</li></ul>";  
  45.  return htmlText;  
  46.    
  47.  }   
  48.           </script>  
  49.    
  50.      </body>  
  51. </html>  

至此,一个PhoneGap Android插件就成完了。