如何在Mi Calendar(MIUI)中显示活动?

时间:2019-06-25 20:56:52

标签: android android-pendingintent android-calendar miui

当前所有活动的开始日期均为1970年1月1日。
这是待定的意图创建代码:

        Uri uri = ContentUris.withAppendedId(CalendarContract.Events.CONTENT_URI, id);
        Intent intent = new Intent(Intent.ACTION_VIEW).setData(uri);
    // I've tried adding these extras as well, they are not required for google calendar
        intent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME, mRawStartTime);
        intent.putExtra(CalendarContract.EXTRA_EVENT_END_TIME, mRawEndTime);
        intent.putExtra(CalendarContract.EXTRA_EVENT_ALL_DAY, mIsAllDay);
        return PendingIntent.getActivity(context, 1 ,intent, 0);

此日历是否需要特定的附加功能?

0 个答案:

没有答案