以下是我用于在日历应用中添加活动的代码。
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", true);
intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "Test Event");
intent.putExtra("description", "This is a sample description");
startActivity(intent);
我想在我的应用程序的日历活动页面中添加该活动,并希望从我的应用程序而不是日历应用程序中取回通知。请让我知道,我该怎么做。