真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

phonegap2.9.1中自定義插件實(shí)現(xiàn)分享

我也剛開始自學(xué)phonegap 有不那個(gè)的地方 大蝦們勿噴??!

讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、虛擬空間、營銷軟件、網(wǎng)站建設(shè)、鋼城網(wǎng)站維護(hù)、網(wǎng)站推廣。

直接開始步驟:

1.首先創(chuàng)建一個(gè)Share.java文件直接上代碼

import org.apache.cordova.api.CallbackContext;
import org.apache.cordova.api.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.content.Intent;

public class Share extends CordovaPlugin {
   @Override
   public boolean execute(String action, JSONArray args,CallbackContext callbackContext) throws JSONException {
           if(action.equals("fenxiang")){
               JSONObject jo = args.getJSONObject(0);
               fenxiang(jo.getString("subject"), jo.getString("text"));          
               callbackContext.success();
               return true;
           }else{
               callbackContext.error("failed error");
               return false;
           }
   }

   private void fenxiang(String subject, String text) {
       Intent sendIntent = new Intent(Intent.ACTION_SEND);
       sendIntent.setType("text/plain");
       sendIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
       sendIntent.putExtra(Intent.EXTRA_TEXT, text);
       sendIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
       this.cordova.startActivityForResult(this, sendIntent, 0);
   }
}

2.在config.xml中配置


               

3.在cordova.js中添加定義

//Share.js 分享
define("cordova/plugin/share", function(require, exports, module) {
   var exec = require('cordova/exec');
   var modulemapper = require('cordova/modulemapper');

   var share = {
       fenxiang:function(content,success,fali) {
           exec(success, fali, "Share", "fenxiang", [content]);
       }
   };
   module.exports = share;
});

這個(gè)在cordova2.9.1中必須要
define("cordova/plugin/share/symbols", function(require, exports, module) {
   var modulemapper = require('cordova/modulemapper');
   modulemapper.clobbers('cordova/plugin/share', 'share');
});

4.寫一個(gè)share.js文件

里面就寫這個(gè)

function fenxiang(){
   //alert(share.fenxiang);
   share.fenxiang({subject:'分享',text:'I like my love'},
       function(){
           //alert('分享成功');
       },function(){
           //alert('分享失敗');
       });
}

5.編寫index.html 其中share.js放在js文件夾下 如果你是在www文件夾下

就這樣寫src=“share.js”



 
   Capture Audio
   
   
   
   
       

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部