我在我的应用程序中使用了这段代码并获得了下一页。

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);

但我要这一页
我应该在代码中更改什么。
请帮帮我。

最佳答案

试试这个:

    long startMillis;
    ...
    Uri.Builder builder = CalendarContract.CONTENT_URI.buildUpon();
    builder.appendPath("time");
    ContentUris.appendId(builder, startMillis);
    Intent intent = new Intent(Intent.ACTION_VIEW).setData(builder.build());
    startActivity(intent);

09-04 22:37