-4

我在语法上插入新事件或编辑事件时遇到一些问题。Android Foryo os 2.2 工作正常,但同样的事情没有在 ICS 中运行。我知道ContentProviderurl 但错误出现在 Column 字段上。

请帮助我或发布您的代码或示例。

4

1 回答 1

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());

我希望这能帮到您。

于 2012-07-11T11:49:58.047 回答