如何使用Intents在我的应用程序中调用日历?
答案 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)