有没有办法使用Intents为新的日历事件添加提醒?

时间:2012-11-28 23:47:35

标签: android android-calendar android-2.1-eclair

我需要支持Android 2.1及更高版本。我知道CalendarContract在Android 2.1中不可用,所以我做了以下解决方法。

Intent intent = new Intent(Intent.ACTION_EDIT)
                        .setType("vnd.android.cursor.item/event")
                        .putExtra("beginTime", beginTime.getTimeInMillis())
                        .putExtra("title", title)
                        .putExtra("description", description)
                        .putExtra("eventLocation", location)
                        .putExtra("allDay", allDay)
                        .putExtra(Intent.EXTRA_EMAIL, email );
                if(!allDay) {
                    intent.putExtra("endTime", endTime.getTimeInMillis());
                }

               startActivity(intent);

到目前为止,效果非常好。我已经在2.1到4.1进行了测试。

我也想添加提醒,但我找不到任何有关如何使用Intents进行操作的文档。有人有例子吗?我想避免为我的清单添加更多权限以便写入日历,所以如果你有一个需要的建议,我将无法使用它。

1 个答案:

答案 0 :(得分:1)

如果您检查了股票机器人日历来源code,则无法使用意图添加提醒。

而不是calendar有一个设置来设置默认提醒。但是一些OEM可以实现这一点。所以,即使你找到它,它也无法在所有手机上使用。