如何在Android中使用不同的日历?

时间:2014-04-03 08:08:25

标签: android events calendar

我需要在Android中使用不同的日历,因为我想从我的应用添加事件日历,但我不想在默认日历中添加事件我想要其他日历。我希望其他日历具有相同或类似的默认日历。没有自定义日历。可能吗?任何的想法?我希望有人帮助我。

1 个答案:

答案 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事件添加到当前日期..