日历开放活动

时间:2014-07-23 13:24:42

标签: android calendar

Intent intent = new Intent(Intent.ACTION_VIEW);
    // Android 2.2+
    intent.setData(Uri.parse("content://com.android.calendar/events/"
            + String.valueOf(eventId)));
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
            | Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TOP
            | Intent.FLAG_ACTIVITY_NO_HISTORY
            | Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
    context.startActivity(intent);

我正在尝试使用事件ID返回时完全打开事件添加到日历,问题该日历以白屏开始然后关闭返回应用

0 个答案:

没有答案