如何在应用程序中使用intents调用日历?

最佳答案

你需要一个像这样的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);

10-07 23:07