私は自分のアプリケーションでこのコードを使用していて、次のページを取得しています。
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);
でもこのページが欲しい
コードで何を変更すればよいですか。私を助けてください。