如何在Froyo中读取和写入日历事件以及在Android中的Froyo OS上面

时间:2012-07-11 11:44:56

标签: android

我有一些通过语法插入新事件或编辑事件的问题。 Android Foryo os 2.2工作正常,但同样的东西不在ICS中运行。我知道ContentProvider网址,但错误位于列字段。

请帮助我或发布您的代码或样本。

1 个答案:

答案 0 :(得分:1)

以下是编辑新活动的示例:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("title", myStringTitle);
intent.putExtra("description", myStringDescription);
intent.putExtra("eventLocation",myStringLocation);
intent.putExtra("beginTime", myBeginDate.getTimeInMillis());
intent.putExtra("endTime", myEndDate.getTimeInMillis());

我希望这会对你有所帮助。