我在我的应用程序中使用此代码并获得以下页面。
Intent calendarIntent = new Intent(Intent.ACTION_EDIT);
calendarIntent.setType("vnd.android.cursor.item/event");
calendarIntent.putExtra("title", "Title");
calendarIntent.putExtra("beginTime", new Date());
calendarIntent.putExtra("endTime", new Date(2013,7,7));
calendarIntent.putExtra("description", "Description");
startActivity(calendarIntent);
但我想要这个页面
我应该在我的代码中更改什么。请帮我。