谁能告诉我如何修改(编辑)和删除用户自己使用我的android应用程序添加的android日历事件。我已经尝试了很多,但没有一个适合我。我是第一次处理这些日历。我们有解决方案吗?
问问题
4943 次
1 回答
0
看看这个问题:StackOverflow
这段代码对我有用。
Uri eventsUri = Uri.parse("content://com.android.calendar/events");
ContentResolver cr = getContentResolver();
Cursor cursor;
cursor = cr.query(eventsUri, new String[]{ "_id" },"calendar_id=" + 1, null, null);
while(cursor.moveToNext()) {
long eventId = cursor.getLong(cursor.getColumnIndex("_id"));
cr.delete(ContentUris.withAppendedId(eventsUri, eventId), null, null);
}
cursor.close();
// Show message
Toast.makeText(getApplicationContext(), "Calendar Cleared!",Toast.LENGTH_LONG).show();
于 2018-11-28T17:24:47.050 回答