我需要在Android中使用不同的日历,因为我想从我的应用添加事件日历,但我不想在默认日历中添加事件我想要其他日历。我希望其他日历具有相同或类似的默认日历。没有自定义日历。可能吗?任何的想法?我希望有人帮助我。
答案 0 :(得分:0)
试试这个简单的代码:
Calendar cal = Calendar.getInstance();
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("allDay", true);
intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", cal.getTimeInMillis()+60*60*1000);
intent.putExtra("title", "A Test Event from android app");
startActivity(intent);
在上面的代码中,我将A Test Event from android app
事件添加到当前日期..