gpt4 book ai didi

android - 通过我的应用程序更新和删除 android 中的日历事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:15:23 25 4
gpt4 key购买 nike

谁能告诉我如何修改(编辑)和删除 android 日历事件,这些事件是由用户自己使用我的 android 应用程序添加的。我已经尝试了很多,但没有一个适合我。我是第一次处理这些压延机。我们对此有解决方案吗?

最佳答案

看看这个问题: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();

关于android - 通过我的应用程序更新和删除 android 中的日历事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15223107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com