嗨,我正在开发一个我想在其中处理日历的 android 应用程序。我无法在自己的日历中添加活动。我使用了以下代码。使用该代码我可以在默认日历中添加事件..请建议我在我的代码中所需的更改以在我的应用程序的日历中添加事件
private void addevent() {
// TODO Auto-generated method stub
Intent calIntent = new Intent(Intent.ACTION_INSERT);
calIntent.setType("vnd.android.cursor.item/event");
calIntent.putExtra(Events.TITLE, "My House Party");
calIntent.putExtra(Events.EVENT_LOCATION, "My Beach House");
calIntent.putExtra(Events.DESCRIPTION, "A Pig Roast on the Beach");
GregorianCalendar calDate = new GregorianCalendar(2013, 4, 16);
calIntent.putExtra(CalendarContract.EXTRA_EVENT_ALL_DAY, true);
calIntent.putExtra(CalendarContract.EXTRA_EVENT_BEGIN_TIME,
calDate.getTimeInMillis());
calIntent.putExtra(CalendarContract.EXTRA_EVENT_END_TIME,
calDate.getTimeInMillis());
startActivity(calIntent);
Toast.makeText(this, "event added", Toast.LENGTH_SHORT).show();
}