2012-02-26 67 views

回答

1

我認爲是更好地找到它基於事件的信息(標題,描述),因爲當你想編輯speceific事件同時,用戶可以刪除自己的事件,並創建另一個事件可能與您的ID相同。因此,您將得到錯誤的事件進行編輯。

所以,我認爲是比較安全的找到你的選擇基於事件的所有權或描述...

例如,如果你想刪除的事件(Android 2.2版爲例):

getContentResolver().delete(Uri.parse("content://com.android.calendar/events"), "title=? and description=?", new String[]{"The title of the event", "Description of the event"});