我有一些通过语法插入新事件或编辑事件的问题。 Android Foryo os 2.2工作正常,但同样的东西不在ICS中运行。我知道ContentProvider
网址,但错误位于列字段。
请帮助我或发布您的代码或样本。
答案 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());
我希望这会对你有所帮助。