I am using this code in my application and getting following page.
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);
but I want this page
what should I change in my code. please help me.