如何使用Intent在我的应用程序中调用日历?

时间:2011-05-20 12:21:11

标签: android

如何使用Intents在我的应用程序中调用日历

2 个答案:

答案 0 :(得分:4)

你需要Intent看起来像这样:

Intent calendarIntent = new Intent(Intent.ACTION_EDIT);  
calendarIntent.setType("vnd.android.cursor.item/event");
calendarIntent.putExtra("title", "Title");
calendarIntent.putExtra("beginTime", startTimeMillis);
calendarIntent.putExtra("endTime", endTimeMillis);
calendarIntent.putExtra("description", "Description");

然后你可以通过调用它来启动它:

startActivity(calendarIntent);

答案 1 :(得分:0)

您的意思是日历应用程序或用于向日历添加新活动的表单吗?

无论哪种方式。请参阅此答案:

how can i open the calendar from my app?