Phonegap 3.0自定义插件
几个月前我使用phonegap 2.7为应用程序添加了一个插件,并且完美运行。 该插件基本上打开用户电话簿,并返回到我的应用程序的用户选择的联系人的详细信息。
我最近升级到Phonegap 3.0,我试图将我的插件转换为3.0; 然而,我现在无法让插件工作,因为它全部是3.0 ....这就是我所拥有的
ContactView.java
SRC COM huronasolutions 插件 ContactView.java
package com.huronasolutions.plugins;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.provider.ContactsContract;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.PluginResult;
import org.apache.cordova.CordovaPlugin;
public class ContactView extends CordovaPlugin {
private static final int PICK_CONTACT = 1;
private CallbackContext callback;
@Override
public boolean execute(String action, JSONArray args, final CallbackContext callbackContext) throws JSONException {
if (action.equals("getContact")) {
this.callback = callbackContext;
cordova.getActivity().runOnUiThread(new Runnable() {
public void run() {
startContactActivity();
PluginResult mPlugin = new PluginResult(PluginResult.Status.NO_RESULT);
mPlugin.setKeepCallback(true);
callbackContext.sendPluginResult(mPlugin);
}
});
return true;
}
return false;
}
public void startContactActivity() {
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType(ContactsContract.Contacts.CONTENT_TYPE);
this.cordova.startActivityForResult((CordovaPlugin) this, intent,
PICK_CONTACT);
}
@Override
public void onActivityResult(int reqCode, int resultCode, Intent data) {
String name = null;
String number = null;
String email = null;
switch (reqCode) {
case (PICK_CONTACT):
if (resultCode == Activity.RESULT_OK) {
Uri contactData = data.getData();
Cursor c = this.cordova.getActivity().getContentResolver()
.query(contactData, null, null, null, null);
if (c.moveToFirst()) {
String ContactID = c.getString(c
.getColumnIndex(ContactsContract.Contacts._ID));
String hasPhone = c
.getString(c
.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER));
if (Integer.parseInt(hasPhone) == 1) {
Cursor phoneCursor = this.cordova
.getActivity()
.getContentResolver()
.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID
+ "='" + ContactID + "'", null,
null);
while (phoneCursor.moveToNext()) {
number = phoneCursor
.getString(phoneCursor
.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
}
}
// get email address
Cursor emailCur = this.cordova
.getActivity()
.getContentResolver()
.query(ContactsContract.CommonDataKinds.Email.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Email.CONTACT_ID
+ "='" + ContactID + "'", null,
null);
while (emailCur.moveToNext()) {
// This would allow you get several email addresses
// if the email addresses were stored in an array
email = emailCur
.getString(emailCur
.getColumnIndex(ContactsContract.CommonDataKinds.Email.DATA));
// String emailType = emailCur.getString(
// emailCur.getColumnIndex(ContactsContract.CommonDataKinds.Email.TYPE));
}
emailCur.close();
name = c.getString(c
.getColumnIndexOrThrow(ContactsContract.Contacts.DISPLAY_NAME));
JSONObject contactObject = new JSONObject();
try {
contactObject.put("name", name);
contactObject.put("phone", number);
contactObject.put("email", email);
} catch (JSONException e) {
e.printStackTrace();
}
callback.success(contactObject);
}
}
break;
}
}
}
ContactView.js
资产 WWW JS 机器人 ContactView.js
cordova.define("com.huronasolutions.plugins.ContactView", function (require, exports, module) {
var exec = require("cordova/exec");
var contactView = {
show: function (successCallback, failCallback) {
function success(args) {
if (typeof successCallback === 'function')
successCallback(args);
}
function fail(args) {
if (typeof failCallback === 'function')
failCallback(args);
}
return exec(
function (args) { success(args); },
function (args) { fail(args); },
'ContactView',
'getContact',
[]);
}
}
module.exports = contactView;
});
我的index.html文件的头部中有以下内容
<script type="text/javascript" src="js/android/ContactView.js"></script>
当我用这样的代码调用它时
window.contactView.show(
function (contact) {
success({ "contact": contact, "msg": "success" });
},
function (fail) {
fail({ "msg": "We were unable to get the contact you selected." });
}
);
我在LogCat中出现以下错误
* 09-17 22:09:24.285:E / Web控制台(1679):Uncaught TypeError:无法调用未定义的方法'show'at file:///android_asset/www/js/txt2.js:477 *
当我这样称呼它时
contactView.show(
function (contact) {
success({ "contact": contact, "msg": "success" });
},
function (fail) {
fail({ "msg": "We were unable to get the contact you selected." });
}
);
LogCat说contactView是未定义的。
有人可以帮忙,我想我已经遵循了我可以在网上找到的每一个指南。 谢谢
像这样调用你的插件:
cordova.require("com.huronasolutions.plugins.ContactView").show(
function (contact) {
success({ "contact": contact, "msg": "success" });
},
function (fail) {
fail({ "msg": "We were unable to get the contact you selected." });
}
);
还要确保你已经在config.xml中定义了插件:
<feature name="contactView">
<param name="android-package" value="com.huronasolutions.plugins.ContactView"/
</feature>
链接地址: http://www.djcxy.com/p/53407.html
上一篇: Phonegap 3.0 Custom Plugin
下一篇: Phonegap facebook plugin Error calling method on NPObject