4

我正在使用 PhoneGap(又名 Cordova)构建一个 Android 应用程序,但无法让日历集成正常工作。 免责声明:我是 Android 和 PhoneGap 的菜鸟,请多多包涵。

我要做的就是向用户的日历添加一个事件。按照本教程,我创建了一个尝试启动日历意图的插件。代码如下所示:

public class CalendarPlugin extends Plugin {
public static final String NATIVE_ACTION_STRING="addToCalendar"; 
public static final String SUCCESS_PARAMETER="success"; 

@Override
public PluginResult execute(String action, JSONArray data, String callbackId) {
    if (NATIVE_ACTION_STRING.equals(action)) { 
        Calendar beginTime = Calendar.getInstance();
        beginTime.set(2012, 6, 19, 7, 30);
        Calendar endTime = Calendar.getInstance();
        endTime.set(2012, 6, 19, 8, 30);

        Intent calIntent = new Intent((Context) this.ctx, CalendarPlugin.class)
            .setAction(Intent.ACTION_INSERT)
            .putExtra(Events.TITLE, "A new event")
            .putExtra(CalendarContract.EXTRA_EVENT_ALL_DAY, true)
            .putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, beginTime.getTimeInMillis())
            .putExtra(CalendarContract.EXTRA_EVENT_END_TIME, endTime.getTimeInMillis());

        this.ctx.startActivity(calIntent);
        return new PluginResult(PluginResult.Status.OK, "Smashing success");
    }

return new PluginResult(PluginResult.Status.ERROR, "Didn't work bro");
}
}

调用此插件的 Javascript 代码是标准的:

var CalendarPlugin = { 
    callNativeFunction: function (success, fail, resultType) { 
        if (cordova) {
            return cordova.exec( success, fail, 
                "org.myorg.appname.CalendarPlugin", 
                "addToCalendar", [resultType]);
        }
        else {
            alert("Calendar function is not available here.");
        }
    } 
};

正在调用 Android 代码(使用断点确认)。但是返回给 Javascript 代码的结果是一个错误:

找不到明确的活动类 {org.myorg.appname/org.myorg.appname.CalendarPlugin};您是否在 AndroidManifest.xml 中声明了此活动?

教程中没有提到添加到 AndroidManifest.xml,这让我相信我遗漏了一些东西(此外,CalendarPlugin代码正在成功调用,那么怎么会出现错误说找不到CalendarPlugin类呢? )。如果确实需要将CalendarPlugin添加到清单中,我将如何去做呢?

4

2 回答 2

5

引用的教程没有涵盖意图。您将数据发送到的意图是您自己的 CalendarPlugIn 类,这不是您想要的,因为它不处理意图。

有关意图,请参阅http://developer.android.com/guide/topics/intents/intents-filters.html 。

此外,如果您搜索 SO,您会发现在 ICS 之前,甚至没有办法在不使用网络服务的情况下正式将内容添加到 Google 日历。有一些非官方的方法可以做到这一点,但受制于谷歌或 ODM 本身的突发奇想。

更新:

您应该能够使用 Phonegap 的意图(通过插件)。我只添加了注释以说明如果您打算在您的应用程序中集成日历,如果您想支持大多数 Android 设备,您可能需要做一些研究。如果您有兴趣在 ICS 中添加日历事件,请查看:http: //developer.android.com/reference/android/provider/CalendarContract.html

操作编辑

我只需要修复Intent构造函数,这按预期工作:

Uri uri = Uri.parse("content://com.android.calendar/events");
Intent calIntent = new Intent("android.intent.action.INSERT", uri)
于 2012-06-03T22:16:56.307 回答
0

为了使其适用于所有 android sdk 版本,请尝试以下代码

 Intent intent = new Intent(Intent.ACTION_EDIT);
 intent.setType("vnd.android.cursor.item/event");

我试过它为我工作。

于 2012-12-11T08:47:04.513 回答