phonegap跳转Activity android插件调用原生

{

“file”: “plugins/org.apache.cordova.dialogs/www/notification.js”,

“id”: “org.apache.cordova.dialogs.notification”,

“merges”: [

“navigator.notification”

]

},

{

“file”: “plugins/org.apache.cordova.dialogs/www/android/notification.js”,

“id”: “org.apache.cordova.dialogs.notification_android”,

“merges”: [

“navigator.notification”

]

},

{

“file”: “plugins/org.apache.cordova.vibration/www/vibration.js”,

“id”: “org.apache.cordova.vibration.notification”,

“merges”: [

“navigator.notification”

]

},

{

“file”: “plugins/intent.js”,

“id”: “org.apache.cordova.intent”,

“merges”: [

“navigator.intent”

]

},

];

module.exports.metadata =

// TOP OF METADATA

{

“org.apache.cordova.camera”: “0.2.7”,

“org.apache.cordova.dialogs”: “0.2.6”,

“org.apache.cordova.vibration”: “0.3.7”,

“org.apache.cordova.intent” :“0.0.1”,

}

// BOTTOM OF METADATA

});

2 在plugin目录下编写javascript接口

贴上intent.js的接口代码

cordova.define(“org.apache.cordova.intent”, function(require, exports, module) {

var exec = require(‘cordova/exec’);

module.exports = {

/**

  • 一共5个参数

第一个 :成功会掉

第二个 :失败回调

第三个 :将要调用的类的配置名字(在config.xml中配置 稍后在下面会讲解)

第四个 :调用的方法名(一个类里可能有多个方法 靠这个参数区分)

第五个 :传递的参数 以json的格式

*/

demo: function(mills) {

exec(function(winParam){

alert(winParam);

}, null, “Demo”, “intent”, [mills]);

},

};

});

Demo中成功返回 会弹出一个Alert();

在javascript中的 调用语句是

navigator.intent.demo(1);

贴上整的javascript

Notification Example

<3> 在res/xml 目录下配置  config.xml 文件

config.xml配置 加上 如下

feature的name属性   非常重要

name必须是步骤< 4 >中   function中调用的类名

value属性指定插件在src目录下的java文件  (命名空间)

前3个步骤 参考上一章 phonegap插件开发

这里主要描述

<4> 编写phonegap的java插件类  调用本地的activity

首先继承CordovaPlugin

重写execute方法    execute返回值为true时  此插件可用;返回为false时 此插件失效

在插件类当中获取   this 跳转

Intent intent = new Intent(cordova.getActivity(), DemoActivity.class);

cordova.startActivityForResult((CordovaPlugin) this,intent, 200);

如果使用

cordova.getActivity().startActivityForResult(intent,200);

被调用的Activity 在   setResult之后;

并不会返回到当前的插件中   它将返回到的webView的CordovaActivity当中 ,

Plugin_intent 类的  onActivityResult将收不到消息    ;

我查看源码后得知    cordova这个是CordovaInterface类型的   已由CordovaPlugin实现

在CordovaInterface当中找到了

/**

  • Launch an activity for which you would like a result when it finished. When this activity exits,

  • your onActivityResult() method will be called.

  • @param command The command object

  • @param intent The intent to start

  • @param requestCode The request code that is passed to callback to identify the activity

*/

abstract public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode);

完整实例

package plugins;

import org.apache.cordova.CallbackContext;

import org.apache.cordova.CordovaPlugin;

import org.json.JSONArray;

import org.json.JSONException;

import android.content.Intent;

import android.util.Log;

import android.widget.Toast;

import com.phonegap.helloworld.DemoActivity;

public class Plugin_intent extends CordovaPlugin {

/**

  • 注意 构造方法不能为

  • Plugin_intent(){}

  • 可以不写或者 定义为如下

*/

public Plugin_intent() {

}

CallbackContext callbackContext;

自学编程路线、面试题集合/面经、及系列技术文章等,资源持续更新中…


《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!
oid.widget.Toast;

import com.phonegap.helloworld.DemoActivity;

public class Plugin_intent extends CordovaPlugin {

/**

  • 注意 构造方法不能为

  • Plugin_intent(){}

  • 可以不写或者 定义为如下

*/

public Plugin_intent() {

}

CallbackContext callbackContext;

自学编程路线、面试题集合/面经、及系列技术文章等,资源持续更新中…

[外链图片转存中…(img-UQemwOvk-1715863975429)]
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

  • 11
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值